summaryrefslogtreecommitdiff
path: root/internal/database/repos/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/database/repos/main.go')
-rw-r--r--internal/database/repos/main.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/database/repos/main.go b/internal/database/repos/main.go
index e6f50be..25eeec4 100644
--- a/internal/database/repos/main.go
+++ b/internal/database/repos/main.go
@@ -4,6 +4,11 @@ import (
"github.com/jmoiron/sqlx"
)
+type FullRepo interface {
+ ActionRepo
+ UserScoreRepo
+}
+
type Provider struct {
db *sqlx.DB
}