// Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.2.0 // - protoc v3.6.1 // source: version.proto package version 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.32.0 or later. const _ = grpc.SupportPackageIsVersion7 // VersionServiceClient is the client API for VersionService 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. type VersionServiceClient interface { Version(ctx context.Context, in *VersionRequest, opts ...grpc.CallOption) (*VersionResponse, error) } type versionServiceClient struct { cc grpc.ClientConnInterface } func NewVersionServiceClient(cc grpc.ClientConnInterface) VersionServiceClient { return &versionServiceClient{cc} } func (c *versionServiceClient) Version(ctx context.Context, in *VersionRequest, opts ...grpc.CallOption) (*VersionResponse, error) { out := new(VersionResponse) err := c.cc.Invoke(ctx, "/version.VersionService/Version", in, out, opts...) if err != nil { return nil, err } return out, nil } // VersionServiceServer is the server API for VersionService service. // All implementations must embed UnimplementedVersionServiceServer // for forward compatibility type VersionServiceServer interface { Version(context.Context, *VersionRequest) (*VersionResponse, error) mustEmbedUnimplementedVersionServiceServer() } // UnimplementedVersionServiceServer must be embedded to have forward compatible implementations. type UnimplementedVersionServiceServer struct { } func (UnimplementedVersionServiceServer) Version(context.Context, *VersionRequest) (*VersionResponse, error) { return nil, status.Errorf(codes.Unimplemented, "method Version not implemented") } func (UnimplementedVersionServiceServer) mustEmbedUnimplementedVersionServiceServer() {} // UnsafeVersionServiceServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to VersionServiceServer will // result in compilation errors. type UnsafeVersionServiceServer interface { mustEmbedUnimplementedVersionServiceServer() } func RegisterVersionServiceServer(s grpc.ServiceRegistrar, srv VersionServiceServer) { s.RegisterService(&VersionService_ServiceDesc, srv) } func _VersionService_Version_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(VersionRequest) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(VersionServiceServer).Version(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: "/version.VersionService/Version", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(VersionServiceServer).Version(ctx, req.(*VersionRequest)) } return interceptor(ctx, in, info, handler) } // VersionService_ServiceDesc is the grpc.ServiceDesc for VersionService service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var VersionService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "version.VersionService", HandlerType: (*VersionServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "Version", Handler: _VersionService_Version_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "version.proto", }