33 lines
492 B
Go
33 lines
492 B
Go
|
// Code generated by goctl. DO NOT EDIT.
|
||
|
// goctl 1.8.1
|
||
|
// Source: wallet.proto
|
||
|
|
||
|
package wallet_service
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"app-cloudep-wallet-service/gen_result/pb/wallet"
|
||
|
|
||
|
"github.com/zeromicro/go-zero/zrpc"
|
||
|
"google.golang.org/grpc"
|
||
|
)
|
||
|
|
||
|
type (
|
||
|
NoneReq = wallet.NoneReq
|
||
|
OKResp = wallet.OKResp
|
||
|
|
||
|
WalletService interface {
|
||
|
}
|
||
|
|
||
|
defaultWalletService struct {
|
||
|
cli zrpc.Client
|
||
|
}
|
||
|
)
|
||
|
|
||
|
func NewWalletService(cli zrpc.Client) WalletService {
|
||
|
return &defaultWalletService{
|
||
|
cli: cli,
|
||
|
}
|
||
|
}
|