homebox/backend/internal/services/all.go

27 lines
515 B
Go
Raw Normal View History

2022-08-29 18:30:36 -08:00
package services
import "github.com/hay-kot/homebox/backend/internal/repo"
2022-08-29 18:30:36 -08:00
type AllServices struct {
2022-08-30 21:22:01 -08:00
User *UserService
Location *LocationService
2022-09-01 17:52:40 -08:00
Labels *LabelService
2022-09-03 01:17:48 -08:00
Items *ItemService
2022-08-29 18:30:36 -08:00
}
func NewServices(repos *repo.AllRepos) *AllServices {
if repos == nil {
panic("repos cannot be nil")
}
2022-08-29 18:30:36 -08:00
return &AllServices{
2022-08-30 21:22:01 -08:00
User: &UserService{repos},
Location: &LocationService{repos},
2022-09-01 17:52:40 -08:00
Labels: &LabelService{repos},
Items: &ItemService{
repo: repos,
at: attachmentTokens{},
},
2022-08-29 18:30:36 -08:00
}
}