Moved github PAT and storage path to env vars

This commit is contained in:
2026-03-30 22:02:39 +02:00
parent b1079efe58
commit bdf7d4f468
10 changed files with 35 additions and 32 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ func main() {
app := fiber.New()
fiberconfig.Setup(app)
routes.Register(app, cfg)
routes.Register(app, cfg, &envCfg)
log.Fatal(app.Listen(":" + envCfg.Port))
}