mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-21 21:33:02 +01:00
17 lines
360 B
Go
17 lines
360 B
Go
package repo
|
|
|
|
import "github.com/hay-kot/git-web-template/backend/ent"
|
|
|
|
// 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},
|
|
}
|
|
}
|