// endpoints.go registers all HTTP endpoint definitions for weatherapi. // Layer: adapters/inbound/httpapi endpoint registry only. package httpapi import "gitea.maximumdirect.net/ejr/feedapi/endpoint" func Definitions(svc Service) []endpoint.Definition { return []endpoint.Definition{ observationDefinition(svc), forecastDefinition(svc), alertsDefinition(svc), conditionsDefinition(svc), } }