//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-server-clear/internal/biz" "git.gz.internal.jumaiyx.cn/pkg/log" "github.com/google/wire" ) // wireApp init kratos application. func wireApp(log.Logger, *conf.Data, *conf.Webhook) (*biz.Biz, func(), error) { panic(wire.Build(biz.ProviderBizSet)) }