This commit is contained in:
cereci5049 2024-07-24 02:23:43 +05:30
parent 1ae6bd06a5
commit 6cb2940553
3 changed files with 3 additions and 0 deletions

0
src/db/products.nim Normal file
View file

BIN
src/hh1

Binary file not shown.

View file

@ -41,6 +41,9 @@ import
"/login" -> get:
compileTemplateFile(getScriptDir() / "view" / "login.nimja")
"/:path" -> get:
compileTemplateFile(getScriptDir() / "view" / "404.nimja")
servePublic("src/public", "/static")
run()