16 lines
387 B
Go
16 lines
387 B
Go
package app
|
|
|
|
import (
|
|
"github.com/google/wire"
|
|
"gitlab.guxuan.icu/jinshan_community/internal/mods/app/api"
|
|
"gitlab.guxuan.icu/jinshan_community/internal/mods/app/biz"
|
|
"gitlab.guxuan.icu/jinshan_community/internal/mods/app/dal"
|
|
)
|
|
|
|
var Set = wire.NewSet(
|
|
wire.Struct(new(App), "*"),
|
|
wire.Struct(new(dal.App), "*"),
|
|
wire.Struct(new(biz.App), "*"),
|
|
wire.Struct(new(api.App), "*"),
|
|
)
|