meteologica/service_a/internal/domains/meteo/router.go
2025-10-28 23:39:13 +01:00

12 lines
312 B
Go

package meteo
import "net/http"
func RegisterRoutes(mux *http.ServeMux, handler *Handler) {
mux.HandleFunc("POST /ingest/csv", handler.IngestCSV)
mux.HandleFunc("POST /ingest/excel", handler.IngestExcel)
mux.HandleFunc("GET /cities", handler.GetCities)
mux.HandleFunc("GET /data", handler.GetMeteoData)
}