forked from mirrors/homebox
5bbb969763
* remove repo for document tokens * remove schema for doc tokens * fix id template and generate cmd * schema updates * code gen * bump dependencies * fix broken migrations + add maintenance entry type * spelling * remove debug logger * implement repository layer * routes * API client * wip: maintenance log * remove depreciated call
30 lines
877 B
Go
30 lines
877 B
Go
package repo
|
|
|
|
import "github.com/hay-kot/homebox/backend/internal/data/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
|
|
Attachments *AttachmentRepo
|
|
MaintEntry *MaintenanceEntryRepository
|
|
}
|
|
|
|
func New(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},
|
|
Attachments: &AttachmentRepo{db},
|
|
MaintEntry: &MaintenanceEntryRepository{db},
|
|
}
|
|
}
|