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.
20 lines
919 B
Go
20 lines
919 B
Go
package copyright
|
|
|
|
import (
|
|
"context"
|
|
"tercul/internal/domain"
|
|
)
|
|
|
|
// CopyrightRepository defines CRUD methods specific to Copyright.
|
|
type CopyrightRepository interface {
|
|
domain.BaseRepositoryRepository[domain.Copyright]
|
|
|
|
AttachToEntity(ctx context.Context, copyrightID uint, entityID uint, entityType string) (error)
|
|
DetachFromEntity(ctx context.Context, copyrightID uint, entityID uint, entityType string) (error)
|
|
GetByEntity(ctx context.Context, entityID uint, entityType string) ([]domain.Copyright, error)
|
|
GetEntitiesByCopyright(ctx context.Context, copyrightID uint) ([]domain.Copyrightable, error)
|
|
AddTranslation(ctx context.Context, translation *domain.CopyrightTranslation) (error)
|
|
GetTranslations(ctx context.Context, copyrightID uint) ([]domain.CopyrightTranslation, error)
|
|
GetTranslationByLanguage(ctx context.Context, copyrightID uint, languageCode string) (*domain.CopyrightTranslation, error)
|
|
}
|