Changed tester command from 'make test' to 'make tester'

This commit is contained in:
2025-02-12 17:35:57 +11:00
parent 1253c6499d
commit ca92d573ba
3 changed files with 8 additions and 6 deletions

View File

@@ -21,10 +21,10 @@ func addRoutes(
// Static files
mux.Handle("GET /static/", http.StripPrefix("/static/", handlers.HandleStatic()))
// Index page
// Index page and unhandled catchall (404)
mux.Handle("GET /", handlers.HandleRoot())
// Static pages
// Static content, unprotected pages
mux.Handle("GET /about", handlers.HandlePage(page.About()))
// Login page and handlers
@@ -35,4 +35,6 @@ func addRoutes(
conn,
config.SecretKey,
))
// Profile page
}