homebox/backend/internal/repo/repos_all.go

25 lines
643 B
Go
Raw Normal View History

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-08-30 18:05:11 +00:00
Users *EntUserRepository
AuthTokens *EntTokenRepository
Groups *EntGroupRepository
2022-08-31 03:21:18 +00:00
Locations *EntLocationRepository
2022-09-02 01:52:40 +00:00
Labels *EntLabelRepository
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{
Users: &EntUserRepository{db},
AuthTokens: &EntTokenRepository{db},
2022-08-30 18:05:11 +00:00
Groups: &EntGroupRepository{db},
2022-08-31 03:21:18 +00:00
Locations: &EntLocationRepository{db},
2022-09-02 01:52:40 +00:00
Labels: &EntLabelRepository{db},
2022-09-03 09:17:48 +00:00
Items: &ItemsRepository{db},
2022-08-30 02:30:36 +00:00
}
}