// Code generated by protoc-gen-go-grpc. DO NOT EDIT. // versions: // - protoc-gen-go-grpc v1.3.0 // - protoc v3.15.6 // source: proto/users.proto package proto 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 const ( Users_Test_FullMethodName = "/users.Users/Test" ) // UsersClient is the client API for Users 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 UsersClient interface { Test(ctx context.Context, in *None, opts ...grpc.CallOption) (*None, error) } type usersClient struct { cc grpc.ClientConnInterface } func NewUsersClient(cc grpc.ClientConnInterface) UsersClient { return &usersClient{cc} } func (c *usersClient) Test(ctx context.Context, in *None, opts ...grpc.CallOption) (*None, error) { out := new(None) err := c.cc.Invoke(ctx, Users_Test_FullMethodName, in, out, opts...) if err != nil { return nil, err } return out, nil } // UsersServer is the server API for Users service. // All implementations must embed UnimplementedUsersServer // for forward compatibility type UsersServer interface { Test(context.Context, *None) (*None, error) mustEmbedUnimplementedUsersServer() } // UnimplementedUsersServer must be embedded to have forward compatible implementations. type UnimplementedUsersServer struct { } func (UnimplementedUsersServer) Test(context.Context, *None) (*None, error) { return nil, status.Errorf(codes.Unimplemented, "method Test not implemented") } func (UnimplementedUsersServer) mustEmbedUnimplementedUsersServer() {} // UnsafeUsersServer may be embedded to opt out of forward compatibility for this service. // Use of this interface is not recommended, as added methods to UsersServer will // result in compilation errors. type UnsafeUsersServer interface { mustEmbedUnimplementedUsersServer() } func RegisterUsersServer(s grpc.ServiceRegistrar, srv UsersServer) { s.RegisterService(&Users_ServiceDesc, srv) } func _Users_Test_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { in := new(None) if err := dec(in); err != nil { return nil, err } if interceptor == nil { return srv.(UsersServer).Test(ctx, in) } info := &grpc.UnaryServerInfo{ Server: srv, FullMethod: Users_Test_FullMethodName, } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(UsersServer).Test(ctx, req.(*None)) } return interceptor(ctx, in, info, handler) } // Users_ServiceDesc is the grpc.ServiceDesc for Users service. // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var Users_ServiceDesc = grpc.ServiceDesc{ ServiceName: "users.Users", HandlerType: (*UsersServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "Test", Handler: _Users_Test_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "proto/users.proto", }