17 lines
315 B
Go
17 lines
315 B
Go
package repoimpl
|
|
|
|
import (
|
|
"github.com/google/wire"
|
|
)
|
|
|
|
// ProviderRepoImplSet is providers.
|
|
var ProviderRepoImplSet = wire.NewSet(
|
|
NewOrderRepoImpl,
|
|
NewProductRepoImpl,
|
|
NewOrderNotifyRepoImpl,
|
|
NewWechatNotifyRegisterTagRepoImpl,
|
|
NewOrderBakRepoImpl,
|
|
NewMultiNotifyDataRepoImpl,
|
|
NewMultiNotifyLogRepoImpl,
|
|
)
|