Documentation ¶
Index ¶
- Variables
- func RegisterUserServiceServer(s grpc.ServiceRegistrar, srv UserServiceServer)
- type GetUserRequest
- type UnimplementedUserServiceServer
- func (UnimplementedUserServiceServer) GetUser(context.Context, *GetUserRequest) (*UserResponse, error)
- func (UnimplementedUserServiceServer) LoginUser(context.Context, *UserInputRequest) (*UserResponse, error)
- func (UnimplementedUserServiceServer) RegisterUser(context.Context, *UserInputRequest) (*UserResponse, error)
- type UnsafeUserServiceServer
- type UserInputRequest
- func (*UserInputRequest) Descriptor() ([]byte, []int)deprecated
- func (x *UserInputRequest) GetPassword() string
- func (x *UserInputRequest) GetUsername() string
- func (*UserInputRequest) ProtoMessage()
- func (x *UserInputRequest) ProtoReflect() protoreflect.Message
- func (x *UserInputRequest) Reset()
- func (x *UserInputRequest) String() string
- type UserResponse
- func (*UserResponse) Descriptor() ([]byte, []int)deprecated
- func (x *UserResponse) GetDate() string
- func (x *UserResponse) GetUsername() string
- func (*UserResponse) ProtoMessage()
- func (x *UserResponse) ProtoReflect() protoreflect.Message
- func (x *UserResponse) Reset()
- func (x *UserResponse) String() string
- type UserServiceClient
- type UserServiceServer
Constants ¶
This section is empty.
Variables ¶
var File_pkg_userpb_user_proto protoreflect.FileDescriptor
var UserService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "userpb.UserService", HandlerType: (*UserServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "GetUser", Handler: _UserService_GetUser_Handler, }, { MethodName: "RegisterUser", Handler: _UserService_RegisterUser_Handler, }, { MethodName: "LoginUser", Handler: _UserService_LoginUser_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "pkg/userpb/user.proto", }
UserService_ServiceDesc is the grpc.ServiceDesc for UserService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)
Functions ¶
func RegisterUserServiceServer ¶
func RegisterUserServiceServer(s grpc.ServiceRegistrar, srv UserServiceServer)
Types ¶
type GetUserRequest ¶
type GetUserRequest struct { Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"` // contains filtered or unexported fields }
func (*GetUserRequest) Descriptor
deprecated
func (*GetUserRequest) Descriptor() ([]byte, []int)
Deprecated: Use GetUserRequest.ProtoReflect.Descriptor instead.
func (*GetUserRequest) GetUsername ¶
func (x *GetUserRequest) GetUsername() string
func (*GetUserRequest) ProtoMessage ¶
func (*GetUserRequest) ProtoMessage()
func (*GetUserRequest) ProtoReflect ¶
func (x *GetUserRequest) ProtoReflect() protoreflect.Message
func (*GetUserRequest) Reset ¶
func (x *GetUserRequest) Reset()
func (*GetUserRequest) String ¶
func (x *GetUserRequest) String() string
type UnimplementedUserServiceServer ¶
type UnimplementedUserServiceServer struct { }
UnimplementedUserServiceServer must be embedded to have forward compatible implementations.
func (UnimplementedUserServiceServer) GetUser ¶
func (UnimplementedUserServiceServer) GetUser(context.Context, *GetUserRequest) (*UserResponse, error)
func (UnimplementedUserServiceServer) LoginUser ¶
func (UnimplementedUserServiceServer) LoginUser(context.Context, *UserInputRequest) (*UserResponse, error)
func (UnimplementedUserServiceServer) RegisterUser ¶
func (UnimplementedUserServiceServer) RegisterUser(context.Context, *UserInputRequest) (*UserResponse, error)
type UnsafeUserServiceServer ¶
type UnsafeUserServiceServer interface {
// contains filtered or unexported methods
}
UnsafeUserServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to UserServiceServer will result in compilation errors.
type UserInputRequest ¶
type UserInputRequest struct { Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"` Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"` // contains filtered or unexported fields }
func (*UserInputRequest) Descriptor
deprecated
func (*UserInputRequest) Descriptor() ([]byte, []int)
Deprecated: Use UserInputRequest.ProtoReflect.Descriptor instead.
func (*UserInputRequest) GetPassword ¶
func (x *UserInputRequest) GetPassword() string
func (*UserInputRequest) GetUsername ¶
func (x *UserInputRequest) GetUsername() string
func (*UserInputRequest) ProtoMessage ¶
func (*UserInputRequest) ProtoMessage()
func (*UserInputRequest) ProtoReflect ¶
func (x *UserInputRequest) ProtoReflect() protoreflect.Message
func (*UserInputRequest) Reset ¶
func (x *UserInputRequest) Reset()
func (*UserInputRequest) String ¶
func (x *UserInputRequest) String() string
type UserResponse ¶
type UserResponse struct { Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"` Date string `protobuf:"bytes,2,opt,name=date,proto3" json:"date,omitempty"` // contains filtered or unexported fields }
func (*UserResponse) Descriptor
deprecated
func (*UserResponse) Descriptor() ([]byte, []int)
Deprecated: Use UserResponse.ProtoReflect.Descriptor instead.
func (*UserResponse) GetDate ¶
func (x *UserResponse) GetDate() string
func (*UserResponse) GetUsername ¶
func (x *UserResponse) GetUsername() string
func (*UserResponse) ProtoMessage ¶
func (*UserResponse) ProtoMessage()
func (*UserResponse) ProtoReflect ¶
func (x *UserResponse) ProtoReflect() protoreflect.Message
func (*UserResponse) Reset ¶
func (x *UserResponse) Reset()
func (*UserResponse) String ¶
func (x *UserResponse) String() string
type UserServiceClient ¶
type UserServiceClient interface { GetUser(ctx context.Context, in *GetUserRequest, opts ...grpc.CallOption) (*UserResponse, error) RegisterUser(ctx context.Context, in *UserInputRequest, opts ...grpc.CallOption) (*UserResponse, error) LoginUser(ctx context.Context, in *UserInputRequest, opts ...grpc.CallOption) (*UserResponse, error) }
UserServiceClient is the client API for UserService 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.
func NewUserServiceClient ¶
func NewUserServiceClient(cc grpc.ClientConnInterface) UserServiceClient
type UserServiceServer ¶
type UserServiceServer interface { GetUser(context.Context, *GetUserRequest) (*UserResponse, error) RegisterUser(context.Context, *UserInputRequest) (*UserResponse, error) LoginUser(context.Context, *UserInputRequest) (*UserResponse, error) // contains filtered or unexported methods }
UserServiceServer is the server API for UserService service. All implementations must embed UnimplementedUserServiceServer for forward compatibility