package country import ( "context" "tercul/internal/domain" ) // CountryRepository defines CRUD methods specific to Country. type CountryRepository interface { domain.BaseRepository[domain.Country] GetByCode(ctx context.Context, code string) (*domain.Country, error) ListByContinent(ctx context.Context, continent string) ([]domain.Country, error) }