Files
s01e02/internal/domain/location_repository.go
2026-03-12 02:10:57 +01:00

9 lines
209 B
Go

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