ms-tester/internal/contests/pg_repository.go
Vyacheslav1557 be25404852 feat:
2024-10-13 19:01:36 +05:00

13 lines
318 B
Go

package contests
import (
"context"
"git.sch9.ru/new_gate/ms-tester/internal/models"
)
type ContestRepository interface {
CreateContest(ctx context.Context, title string) (int32, error)
ReadContestById(ctx context.Context, id int32) (*models.Contest, error)
DeleteContest(ctx context.Context, id int32) error
}