feat: add superadmin health center

This commit is contained in:
2026-01-17 09:18:05 +08:00
parent 94a10a3af0
commit 4f2b8ea3ad
14 changed files with 870 additions and 5 deletions

View File

@@ -73,6 +73,13 @@ func Provide(opts ...opt.Option) error {
}); err != nil {
return err
}
if err := container.Container.Provide(func() (*healths, error) {
obj := &healths{}
return obj, nil
}); err != nil {
return err
}
if err := container.Container.Provide(func() (*notifications, error) {
obj := &notifications{}
@@ -111,6 +118,7 @@ func Provide(opts ...opt.Option) error {
creatorApplications *creatorApplications,
creators *creators,
finance *finance,
healths *healths,
middlewares *middlewares.Middlewares,
notifications *notifications,
orders *orders,
@@ -131,6 +139,7 @@ func Provide(opts ...opt.Option) error {
creatorApplications: creatorApplications,
creators: creators,
finance: finance,
healths: healths,
middlewares: middlewares,
notifications: notifications,
orders: orders,