diff options
Diffstat (limited to 'internal/database/repos')
| -rw-r--r-- | internal/database/repos/main.go | 5 | 
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  } | 
