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 {
|
|
|
|
Users UserRepository
|
|
|
|
AuthTokens TokenRepository
|
|
|
|
}
|
|
|
|
|
|
|
|
func EntAllRepos(db *ent.Client) *AllRepos {
|
|
|
|
return &AllRepos{
|
|
|
|
Users: &EntUserRepository{db},
|
|
|
|
AuthTokens: &EntTokenRepository{db},
|
|
|
|
}
|
|
|
|
}
|