add service b

This commit is contained in:
2025-10-30 11:40:41 +01:00
parent 90020de1ec
commit e0929aff56
8 changed files with 203 additions and 7 deletions
+16
View File
@@ -0,0 +1,16 @@
package router
import (
"fmt"
"net/http"
)
func SetupRoutes() *http.ServeMux {
mux := http.NewServeMux()
mux.HandleFunc("GET /", func(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "hello world")
})
return mux
}