learning category repo

This commit is contained in:
Aleksandr Trushkin
2024-03-16 17:44:43 +03:00
parent 938d3cd307
commit 88a3cae4fa
13 changed files with 506 additions and 45 deletions

View File

@ -109,6 +109,10 @@ func (conn *YDBConnection) Close() error {
return conn.Driver.Close(ctx)
}
func (conn *YDBConnection) LearningCategory() domain.LearningCategoryRepository {
return domain.NotImplementedLearningCategory{}
}
func (conn *YDBConnection) CourseRepository() *ydbCourseRepository {
return &ydbCourseRepository{
db: conn.Driver,