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