package domain import "context" // LocationRepository defines the interface for loading locations type LocationRepository interface { LoadLocations(ctx context.Context, apiKey string) ([]Location, error) }