forked from mirrors/homebox
343290a55a
* cleanup unnecessary mocks * refactor document storage location * remove unused function * move ownership to document types to repo package * move types and mappers to repo package * refactor sets to own package
30 lines
867 B
Go
30 lines
867 B
Go
package repo
|
|
|
|
import "github.com/hay-kot/homebox/backend/ent"
|
|
|
|
// AllRepos is a container for all the repository interfaces
|
|
type AllRepos struct {
|
|
Users *UserRepository
|
|
AuthTokens *TokenRepository
|
|
Groups *GroupRepository
|
|
Locations *LocationRepository
|
|
Labels *LabelRepository
|
|
Items *ItemsRepository
|
|
Docs *DocumentRepository
|
|
DocTokens *DocumentTokensRepository
|
|
Attachments *AttachmentRepo
|
|
}
|
|
|
|
func EntAllRepos(db *ent.Client, root string) *AllRepos {
|
|
return &AllRepos{
|
|
Users: &UserRepository{db},
|
|
AuthTokens: &TokenRepository{db},
|
|
Groups: &GroupRepository{db},
|
|
Locations: &LocationRepository{db},
|
|
Labels: &LabelRepository{db},
|
|
Items: &ItemsRepository{db},
|
|
Docs: &DocumentRepository{db, root},
|
|
DocTokens: &DocumentTokensRepository{db},
|
|
Attachments: &AttachmentRepo{db},
|
|
}
|
|
}
|