homebox/backend/internal/repo/repos_all.go

25 lines
643 B
Go
Raw Normal View History

2022-08-29 18:30:36 -08:00
package repo
2022-08-29 18:40:54 -08:00
import "github.com/hay-kot/content/backend/ent"
2022-08-29 18:30:36 -08:00
// AllRepos is a container for all the repository interfaces
type AllRepos struct {
2022-08-30 10:05:11 -08:00
Users *EntUserRepository
AuthTokens *EntTokenRepository
Groups *EntGroupRepository
2022-08-30 19:21:18 -08:00
Locations *EntLocationRepository
2022-09-01 17:52:40 -08:00
Labels *EntLabelRepository
2022-09-03 01:17:48 -08:00
Items *ItemsRepository
2022-08-29 18:30:36 -08:00
}
func EntAllRepos(db *ent.Client) *AllRepos {
return &AllRepos{
Users: &EntUserRepository{db},
AuthTokens: &EntTokenRepository{db},
2022-08-30 10:05:11 -08:00
Groups: &EntGroupRepository{db},
2022-08-30 19:21:18 -08:00
Locations: &EntLocationRepository{db},
2022-09-01 17:52:40 -08:00
Labels: &EntLabelRepository{db},
2022-09-03 01:17:48 -08:00
Items: &ItemsRepository{db},
2022-08-29 18:30:36 -08:00
}
}