Files
orphanage/http/routes.go
2025-07-20 20:43:44 -04:00

11 lines
161 B
Go

package http
import "net/http"
func addRoutes(
mux *http.ServeMux,
) {
mux.Handle("/", http.NotFoundHandler())
mux.Handle("/helloworld", HelloWorld(nil))
}