Added templ, tailwind and frankenui
This commit is contained in:
13
server/routes.go
Normal file
13
server/routes.go
Normal file
@@ -0,0 +1,13 @@
|
||||
package server
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
"projectreshoot/handlers"
|
||||
)
|
||||
|
||||
func addRoutes(
|
||||
mux *http.ServeMux,
|
||||
) {
|
||||
mux.Handle("GET /static/", http.StripPrefix("/static/", handlers.HandleStatic()))
|
||||
mux.Handle("GET /", handlers.HandleRoot())
|
||||
}
|
||||
Reference in New Issue
Block a user