summaryrefslogtreecommitdiff
path: root/internal
diff options
context:
space:
mode:
Diffstat (limited to 'internal')
-rw-r--r--internal/database/repos/questions.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/database/repos/questions.go b/internal/database/repos/questions.go
index d9978a4..67f9d1f 100644
--- a/internal/database/repos/questions.go
+++ b/internal/database/repos/questions.go
@@ -4,6 +4,7 @@ import "demoon/internal/models"
type QuestionsRepo interface {
DBGetQuestion(id string) (*models.Question, error)
+ DBGetMixedUbung(id uint32) (*models.MixedUbung, error) // implemet; ai!
}
func (p *Provider) DBGetQuestion(id string) (*models.Question, error) {