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

11 lines
158 B
Go

package http
import "net/http"
func NewServer() http.Handler {
mux := http.NewServeMux()
addRoutes(mux)
var handler http.Handler = mux
return handler
}