GoWeb/internal/routes/get.go

34 lines
794 B
Go
Raw Normal View History

package routes
import (
2024-07-10 22:45:04 +00:00
"GoWeb/internal"
"GoWeb/internal/controllers"
"io/fs"
"log/slog"
"net/http"
)
// Get defines all project get routes
2024-07-02 02:19:48 +00:00
func Get(app *app.Deps) {
// Get controller struct initialize
getController := controllers.Get{
App: app,
}
// Serve static files
staticFS, err := fs.Sub(app.Res, "static")
if err != nil {
slog.Error(err.Error())
return
}
staticHandler := http.FileServer(http.FS(staticFS))
http.Handle("/static/", http.StripPrefix("/static/", staticHandler))
slog.Info("serving static files from embedded file system /static")
// Pages
http.HandleFunc("/", getController.ShowHome)
http.HandleFunc("/login", getController.ShowLogin)
http.HandleFunc("/register", getController.ShowRegister)
http.HandleFunc("/logout", getController.Logout)
}