init hello world

This commit is contained in:
2025-07-20 20:43:44 -04:00
parent 314fb8faa1
commit 349f7fad57
5 changed files with 98 additions and 2 deletions

10
http/routes.go Normal file
View File

@@ -0,0 +1,10 @@
package http
import "net/http"
func addRoutes(
mux *http.ServeMux,
) {
mux.Handle("/", http.NotFoundHandler())
mux.Handle("/helloworld", HelloWorld(nil))
}