mirror of
https://github.com/SamyRai/tercul-backend.git
synced 2025-12-27 05:11:34 +00:00
14 lines
268 B
Go
14 lines
268 B
Go
package city
|
|
|
|
import (
|
|
"context"
|
|
"tercul/internal/domain"
|
|
)
|
|
|
|
// CityRepository defines CRUD methods specific to City.
|
|
type CityRepository interface {
|
|
domain.BaseRepository[domain.City]
|
|
|
|
ListByCountryID(ctx context.Context, countryID uint) ([]domain.City, error)
|
|
}
|