From de9367030b8089a5cb0cc129e889b6012c668e19 Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Sun, 6 Apr 2025 09:13:46 +0300 Subject: feat: add DBGetMixedUbung method to QuestionsRepo interface --- internal/database/repos/questions.go | 1 + 1 file changed, 1 insertion(+) 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) { -- cgit v1.2.3