homebox/backend/internal/services/all.go

25 lines
523 B
Go
Raw Normal View History

2022-08-30 02:30:36 +00:00
package services
2022-08-30 02:40:54 +00:00
import "github.com/hay-kot/content/backend/internal/repo"
2022-08-30 02:30:36 +00:00
type AllServices struct {
2022-08-31 05:22:01 +00:00
User *UserService
Admin *AdminService
Location *LocationService
2022-09-02 01:52:40 +00:00
Labels *LabelService
2022-09-03 09:17:48 +00:00
Items *ItemService
2022-08-30 02:30:36 +00:00
}
func NewServices(repos *repo.AllRepos) *AllServices {
return &AllServices{
2022-08-31 05:22:01 +00:00
User: &UserService{repos},
Admin: &AdminService{repos},
Location: &LocationService{repos},
2022-09-02 01:52:40 +00:00
Labels: &LabelService{repos},
Items: &ItemService{
repo: repos,
filepath: "/tmp/content",
},
2022-08-30 02:30:36 +00:00
}
}