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/handler.go Normal file
View File

@@ -0,0 +1,10 @@
package http
import "net/http"
func NewServer() http.Handler {
mux := http.NewServeMux()
addRoutes(mux)
var handler http.Handler = mux
return handler
}