summaryrefslogtreecommitdiff
path: root/internal/database/repos/main.go
diff options
context:
space:
mode:
authorGrail Finder <wohilas@gmail.com>2025-04-06 10:04:22 +0300
committerGrail Finder <wohilas@gmail.com>2025-04-06 10:04:22 +0300
commit1e5faf9b609fa230d763bccdd8520441c5498a15 (patch)
tree17a92182b49f1222b377fb009a9eff70a84b6a35 /internal/database/repos/main.go
parent95c3ebfaf9fdb1e65e3dfaef177e4b6d20344009 (diff)
Feat: add mixed exercsisesHEADmaster
Diffstat (limited to 'internal/database/repos/main.go')
-rw-r--r--internal/database/repos/main.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/internal/database/repos/main.go b/internal/database/repos/main.go
index f6835c7..e49d303 100644
--- a/internal/database/repos/main.go
+++ b/internal/database/repos/main.go
@@ -2,12 +2,11 @@ package repos
import (
"github.com/jmoiron/sqlx"
- "demoon/internal/models"
)
type FullRepo interface {
DefaultsRepo
- DBGetQuestion(id string) (*models.Question, error)
+ QuestionsRepo
}
type Provider struct {