From 7f79a49bff7883db126481f8c8a795aa312e3505 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Tue, 26 Oct 2021 21:41:39 +0200 Subject: cosmetics --- src/short.nim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/short.nim') diff --git a/src/short.nim b/src/short.nim index fa5486a..7057779 100644 --- a/src/short.nim +++ b/src/short.nim @@ -13,7 +13,7 @@ const favicon = staticRead("../static/favicon.ico") var db {.threadvar.}: DbConn -proc initDB() {.raises: [SqliteError].}= +proc initDB() {.raises: [SqliteError].} = if not db.isOpen(): db = openDatabase("data/short.db") if not db.Migrate(): @@ -36,7 +36,7 @@ func renderNoShort(req: ShortUrl): string {.raises: [].} = func renderError(code: int, msg: string): string {.raises: [].} = compileTemplateFile(getScriptDir() / "templates/error.html") -proc handleToken(token:string): (HttpCode, string) {.raises: [].} = +proc handleToken(token: string): (HttpCode, string) {.raises: [].} = try: let tokenRegexp = re"^[\w]{24}$" if not match(token, tokenRegexp): @@ -89,7 +89,7 @@ proc handleIndexPost(params: Table[string, string]): (HttpCode, string) {.raises return (Http400, renderError(400, "Bad Request")) input.Token = $genOid() input.Created = times.now() - input.Expires = input.Created + initDuration(minutes=exp) + input.Expires = input.Created + initDuration(minutes = exp) try: db.AddUrl(input) except SqliteError: -- cgit v1.2.3