mirror of
https://github.com/SamyRai/tercul-backend.git
synced 2025-12-27 05:11:34 +00:00
This commit includes the following changes: - Refactored all data repositories in `internal/data/sql/` to use a consistent `sql` package and to align with the new `domain` models. - Fixed the GraphQL structure by moving the server creation logic from `internal/app` to `cmd/api`, which resolved an import cycle. - Corrected numerous incorrect import paths for packages like `graph`, `linguistics`, `syncjob`, and the legacy `models` package. - Resolved several package and function redeclaration errors. - Removed legacy migration code.
17 lines
601 B
Go
17 lines
601 B
Go
package translation
|
|
|
|
import (
|
|
"context"
|
|
"tercul/internal/domain"
|
|
)
|
|
|
|
// TranslationRepository defines CRUD methods specific to Translation.
|
|
type TranslationRepository interface {
|
|
domain.BaseRepositoryRepository[domain.Translation]
|
|
|
|
ListByWorkID(ctx context.Context, workID uint) ([]domain.Translation, error)
|
|
ListByEntity(ctx context.Context, entityType string, entityID uint) ([]domain.Translation, error)
|
|
ListByTranslatorID(ctx context.Context, translatorID uint) ([]domain.Translation, error)
|
|
ListByStatus(ctx context.Context, status domain.TranslationStatus) ([]domain.Translation, error)
|
|
}
|