tercul-backend/internal/domain/edge/repo.go
2025-09-05 21:37:42 +00:00

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)
}