You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
718 B
22 lines
718 B
2 years ago
|
//go:build wireinject
|
||
|
// +build wireinject
|
||
|
|
||
|
// The build tag makes sure the stub is not built in the final build.
|
||
|
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"git.gz.internal.jumaiyx.cn/jm/jmproto/conf"
|
||
|
"git.gz.internal.jumaiyx.cn/job/room-mike-hot-timer/internal/biz"
|
||
|
"git.gz.internal.jumaiyx.cn/job/room-mike-hot-timer/internal/data"
|
||
|
ser "git.gz.internal.jumaiyx.cn/job/room-mike-hot-timer/pkg/server"
|
||
|
idencode "git.gz.internal.jumaiyx.cn/pkg/id-encode"
|
||
|
"git.gz.internal.jumaiyx.cn/pkg/log"
|
||
|
"github.com/google/wire"
|
||
|
)
|
||
|
|
||
|
// wireApp init kratos application.
|
||
|
func wireApp(*conf.Data, idencode.IDEncoding, log.Logger) (*biz.MikeHotTimer, func(), error) {
|
||
|
panic(wire.Build(data.ProviderSet, biz.ProviderSet, ser.ProviderServerSet))
|
||
|
}
|