summaryrefslogtreecommitdiff
path: root/internal/database
diff options
context:
space:
mode:
Diffstat (limited to 'internal/database')
-rw-r--r--internal/database/repos/main.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal/database/repos/main.go b/internal/database/repos/main.go
index e57855f..f6835c7 100644
--- a/internal/database/repos/main.go
+++ b/internal/database/repos/main.go
@@ -2,10 +2,12 @@ package repos
import (
"github.com/jmoiron/sqlx"
+ "demoon/internal/models"
)
type FullRepo interface {
DefaultsRepo
+ DBGetQuestion(id string) (*models.Question, error)
}
type Provider struct {