portfolio/api/webRoutes.go

13 lines
206 B
Go
Raw Normal View History

package api
import (
"net/http"
2024-03-13 15:54:09 +01:00
"portfolio/api/webHandler"
)
func WebRoutes(mux **http.ServeMux) {
m := *mux
// Register the routes and webHandler
2024-03-13 15:54:09 +01:00
m.HandleFunc("GET /{$}", webHandler.InitHomepage)
}