Change log message

This commit is contained in:
Maximilian 2023-03-06 21:10:09 -06:00
parent 3fa5cf46d2
commit 073dfafb28

View File

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