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.
 
 
 
 
kratos/examples/transaction/ent/internal/service/service.go

20 lines
447 B

package service
import (
pb "github.com/go-kratos/kratos/examples/transaction/api/transaction/v1"
"github.com/go-kratos/kratos/examples/transaction/ent/internal/biz"
"github.com/go-kratos/kratos/v2/log"
"github.com/google/wire"
)
// ProviderSet is service providers.
var ProviderSet = wire.NewSet(NewTransactionService)
type TransactionService struct {
pb.UnimplementedTransactionServiceServer
log *log.Helper
user *biz.UserUsecase
}