disable dev routes and add .vscode to gitignore

This commit is contained in:
2025-10-23 17:10:31 +07:00
parent 8094de70cc
commit ce4ff29591
3 changed files with 4 additions and 4 deletions

View File

@@ -60,8 +60,10 @@ func main() {
handlers.SetupRoutesCorporate(app, appStore)
// SETUP ROUT CLIENT
handlers.SetupRoutesClient(app, appStore)
// SETUP ROUT DEV
handlers.SetupRoutesDev(app, appStore)
// handlers.SetupRoutesDev(app, appStore)
app.Logger.Fatal(app.Start(":5000"))
}