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
@@ -0,0 +1,7 @@
package meteo
import "net/http"
func RegisterRoutes(mux *http.ServeMux, handler *Handler) {
mux.HandleFunc("GET /weather/{city}", handler.GetMeteoData)
}