diff options
author | Grail Finder (aider) <wohilas@gmail.com> | 2025-04-05 15:00:16 +0300 |
---|---|---|
committer | Grail Finder (aider) <wohilas@gmail.com> | 2025-04-05 15:00:16 +0300 |
commit | 287da7acfa71ff07c52035a437209022b4ddc5d6 (patch) | |
tree | 467558892e65038558e7c1cb0b34deec93f44ceb | |
parent | 0e55ccf54731669cd879ad08bde610761ef37f3d (diff) |
feat: add DBGetQuestion to FullRepo interface
-rw-r--r-- | internal/database/repos/main.go | 2 |
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 { |