Files
projectreshoot/routes.go
2025-02-03 22:28:50 +11:00

14 lines
168 B
Go

package main
import (
"net/http"
"projectreshoot/handlers"
)
func addRoutes(
mux *http.ServeMux,
config Config,
) {
mux.Handle("GET /", handlers.HandleRoot())
}