Make all slog errors uniform (lowercase)

This commit is contained in:
Maximilian
2023-09-03 15:56:35 -05:00
parent ed712a5344
commit e87f14bcbf
6 changed files with 22 additions and 22 deletions

View File

@ -23,7 +23,7 @@ func Get(app *app.App) {
}
staticHandler := http.FileServer(http.FS(staticFS))
http.Handle("/static/", http.StripPrefix("/static/", staticHandler))
slog.Info("Serving static files from embedded file system /static")
slog.Info("serving static files from embedded file system /static")
// Pages
http.HandleFunc("/", getController.ShowHome)