// Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v5.29.2 // source: api/proto/wallet/v1/wallet.proto package walletv1 import ( context "context" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" ) // This is a compile-time assertion to ensure that this generated file // is compatible with the grpc package it is being compiled against. // Requires gRPC-Go v1.64.0 or later. const _ = grpc.SupportPackageIsVersion9 const ( WalletService_DebitGift_FullMethodName = "/hyapp.wallet.v1.WalletService/DebitGift" ) // WalletServiceClient is the client API for WalletService service. // // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream. // // WalletService 首版只暴露送礼扣费能力。 type WalletServiceClient interface { DebitGift(ctx context.Context, in *DebitGiftRequest, opts ...grpc.CallOption) (*DebitGiftResponse, error) } type walletServiceClient struct { cc grpc.ClientConnInterface } func NewWalletServiceClient(cc grpc.ClientConnInterface) WalletServiceClient { return &walletServiceClient{cc} } func (c *walletServiceClient) DebitGift(ctx context.Context, in *DebitGiftRequest, opts ...grpc.CallOption) (*DebitGiftResponse, error) { cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) out := new(DebitGiftResponse) err := c.cc.Invoke(ctx, WalletService_DebitGift_FullMethodName, in, out, cOpts...) if err != nil { return nil, err } return out, nil } // WalletServiceServer is the server API for WalletService service. // All implementations must embed UnimplementedWalletServiceServer // for forward compatibility. // // WalletService 首版只暴露送礼扣费能力。 type WalletServiceServer interface { DebitGift(context.Context, *DebitGiftRequest) (*DebitGiftResponse, error) mustEmbedUnimplementedWalletServiceServer() } // UnimplementedWalletServiceServer must be embedded to have // forward compatible implementations. // // NOTE: this should be embedded by value instead of pointer to avoid a nil // pointer dereference when methods are called. type UnimplementedWalletServiceServer struct{} func (UnimplementedWalletServiceServer) DebitGift(context.Context, *DebitGiftRequest) (*DebitGiftResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method DebitGift not implemented") } func (UnimplementedWalletServiceServer) mustEmbedUnimplementedWalletServiceServer() {} func (UnimplementedWalletServiceServer) testEmbeddedByValue() {} // UnsafeWalletServiceServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to WalletServiceServer will // result in compilation errors. type UnsafeWalletServiceServer interface { mustEmbedUnimplementedWalletServiceServer() } func RegisterWalletServiceServer(s grpc.ServiceRegistrar, srv WalletServiceServer) { // If the following call pancis, it indicates UnimplementedWalletServiceServer was // embedded by pointer and is nil. This will cause panics if an // unimplemented method is ever invoked, so we test this at initialization // time to prevent it from happening at runtime later due to I/O. if t, ok := srv.(interface{ testEmbeddedByValue() }); ok { t.testEmbeddedByValue() } s.RegisterService(&WalletService_ServiceDesc, srv) } func _WalletService_DebitGift_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(DebitGiftRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(WalletServiceServer).DebitGift(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: WalletService_DebitGift_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(WalletServiceServer).DebitGift(ctx, req.(*DebitGiftRequest)) } return interceptor(ctx, in, info, handler) } // WalletService_ServiceDesc is the grpc.ServiceDesc for WalletService service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var WalletService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "hyapp.wallet.v1.WalletService", HandlerType: (*WalletServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "DebitGift", Handler: _WalletService_DebitGift_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "api/proto/wallet/v1/wallet.proto", }