119 lines
2.5 KiB
Go
Executable File
119 lines
2.5 KiB
Go
Executable File
package v1
|
|
|
|
import (
|
|
"quyun/v2/app/middlewares"
|
|
|
|
"go.ipao.vip/atom"
|
|
"go.ipao.vip/atom/container"
|
|
"go.ipao.vip/atom/contracts"
|
|
"go.ipao.vip/atom/opt"
|
|
)
|
|
|
|
func Provide(opts ...opt.Option) error {
|
|
if err := container.Container.Provide(func() (*contents, error) {
|
|
obj := &contents{}
|
|
|
|
return obj, nil
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
if err := container.Container.Provide(func() (*coupons, error) {
|
|
obj := &coupons{}
|
|
|
|
return obj, nil
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
if err := container.Container.Provide(func() (*creatorApplications, error) {
|
|
obj := &creatorApplications{}
|
|
|
|
return obj, nil
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
if err := container.Container.Provide(func() (*creators, error) {
|
|
obj := &creators{}
|
|
|
|
return obj, nil
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
if err := container.Container.Provide(func() (*orders, error) {
|
|
obj := &orders{}
|
|
|
|
return obj, nil
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
if err := container.Container.Provide(func() (*payoutAccounts, error) {
|
|
obj := &payoutAccounts{}
|
|
|
|
return obj, nil
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
if err := container.Container.Provide(func() (*reports, error) {
|
|
obj := &reports{}
|
|
|
|
return obj, nil
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
if err := container.Container.Provide(func(
|
|
contents *contents,
|
|
coupons *coupons,
|
|
creatorApplications *creatorApplications,
|
|
creators *creators,
|
|
middlewares *middlewares.Middlewares,
|
|
orders *orders,
|
|
payoutAccounts *payoutAccounts,
|
|
reports *reports,
|
|
tenants *tenants,
|
|
users *users,
|
|
withdrawals *withdrawals,
|
|
) (contracts.HttpRoute, error) {
|
|
obj := &Routes{
|
|
contents: contents,
|
|
coupons: coupons,
|
|
creatorApplications: creatorApplications,
|
|
creators: creators,
|
|
middlewares: middlewares,
|
|
orders: orders,
|
|
payoutAccounts: payoutAccounts,
|
|
reports: reports,
|
|
tenants: tenants,
|
|
users: users,
|
|
withdrawals: withdrawals,
|
|
}
|
|
if err := obj.Prepare(); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return obj, nil
|
|
}, atom.GroupRoutes); err != nil {
|
|
return err
|
|
}
|
|
if err := container.Container.Provide(func() (*tenants, error) {
|
|
obj := &tenants{}
|
|
|
|
return obj, nil
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
if err := container.Container.Provide(func() (*users, error) {
|
|
obj := &users{}
|
|
|
|
return obj, nil
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
if err := container.Container.Provide(func() (*withdrawals, error) {
|
|
obj := &withdrawals{}
|
|
|
|
return obj, nil
|
|
}); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|