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