mirror of
https://github.com/hay-kot/homebox.git
synced 2024-11-26 18:45:41 +00:00
e8449b3a73
* fix inaccruate 401 error on SQL db error * init golangci-lint config * linter autofix * testify auto fixes * fix sqlite busy errors * fix naming * more linter errors * fix rest of linter issues
36 lines
1.1 KiB
Go
36 lines
1.1 KiB
Go
// Package repo provides the data access layer for the application.
|
|
package repo
|
|
|
|
import (
|
|
"github.com/hay-kot/homebox/backend/internal/core/services/reporting/eventbus"
|
|
"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
|
|
Notifiers *NotifierRepository
|
|
}
|
|
|
|
func New(db *ent.Client, bus *eventbus.EventBus, root string) *AllRepos {
|
|
return &AllRepos{
|
|
Users: &UserRepository{db},
|
|
AuthTokens: &TokenRepository{db},
|
|
Groups: NewGroupRepository(db),
|
|
Locations: &LocationRepository{db, bus},
|
|
Labels: &LabelRepository{db, bus},
|
|
Items: &ItemsRepository{db, bus},
|
|
Docs: &DocumentRepository{db, root},
|
|
Attachments: &AttachmentRepo{db},
|
|
MaintEntry: &MaintenanceEntryRepository{db},
|
|
Notifiers: NewNotifierRepository(db),
|
|
}
|
|
}
|