summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrail Finder (aider) <wohilas@gmail.com>2025-04-05 15:00:16 +0300
committerGrail Finder (aider) <wohilas@gmail.com>2025-04-05 15:00:16 +0300
commit287da7acfa71ff07c52035a437209022b4ddc5d6 (patch)
tree467558892e65038558e7c1cb0b34deec93f44ceb
parent0e55ccf54731669cd879ad08bde610761ef37f3d (diff)
feat: add DBGetQuestion to FullRepo interface
-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 {