mirror of
https://github.com/SamyRai/tercul-backend.git
synced 2025-12-27 05:11:34 +00:00
16 lines
450 B
Go
16 lines
450 B
Go
package place
|
|
|
|
import (
|
|
"context"
|
|
"tercul/internal/domain"
|
|
)
|
|
|
|
// PlaceRepository defines CRUD methods specific to Place.
|
|
type PlaceRepository interface {
|
|
domain.BaseRepository[domain.Place]
|
|
|
|
ListByCountryID(ctx context.Context, countryID uint) ([]domain.Place, error)
|
|
ListByCityID(ctx context.Context, cityID uint) ([]domain.Place, error)
|
|
FindNearby(ctx context.Context, latitude, longitude float64, radiusKm float64) ([]domain.Place, error)
|
|
}
|