2022-08-30 02:30:36 +00:00
|
|
|
package repo
|
|
|
|
|
2022-08-30 02:40:54 +00:00
|
|
|
import "github.com/hay-kot/content/backend/ent"
|
2022-08-30 02:30:36 +00:00
|
|
|
|
|
|
|
// AllRepos is a container for all the repository interfaces
|
|
|
|
type AllRepos struct {
|
2022-09-05 08:26:21 +00:00
|
|
|
Users *UserRepository
|
|
|
|
AuthTokens *TokenRepository
|
|
|
|
Groups *GroupRepository
|
|
|
|
Locations *LocationRepository
|
|
|
|
Labels *LabelRepository
|
2022-09-03 09:17:48 +00:00
|
|
|
Items *ItemsRepository
|
2022-08-30 02:30:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func EntAllRepos(db *ent.Client) *AllRepos {
|
|
|
|
return &AllRepos{
|
2022-09-05 08:26:21 +00:00
|
|
|
Users: &UserRepository{db},
|
|
|
|
AuthTokens: &TokenRepository{db},
|
|
|
|
Groups: &GroupRepository{db},
|
|
|
|
Locations: &LocationRepository{db},
|
|
|
|
Labels: &LabelRepository{db},
|
2022-09-03 09:17:48 +00:00
|
|
|
Items: &ItemsRepository{db},
|
2022-08-30 02:30:36 +00:00
|
|
|
}
|
|
|
|
}
|