mirror of
https://github.com/SamyRai/tercul-backend.git
synced 2025-12-27 05:11:34 +00:00
14 lines
284 B
Go
14 lines
284 B
Go
package edge
|
|
|
|
import (
|
|
"context"
|
|
"tercul/internal/domain"
|
|
)
|
|
|
|
// EdgeRepository defines CRUD methods specific to Edge.
|
|
type EdgeRepository interface {
|
|
domain.BaseRepository[domain.Edge]
|
|
|
|
ListBySource(ctx context.Context, sourceTable string, sourceID uint) ([]domain.Edge, error)
|
|
}
|