Versions in this module Expand all Collapse all v1 v1.0.0 Oct 2, 2018 Changes in this version + func RegisterLoginServer(s *grpc.Server, srv LoginServer) + type LoginClient interface + LoginCheck func(ctx context.Context, in *LoginRequest, opts ...grpc.CallOption) (*LoginReply, error) + func NewLoginClient(cc *grpc.ClientConn) LoginClient + type LoginReply struct + Result bool + func (*LoginReply) Descriptor() ([]byte, []int) + func (*LoginReply) ProtoMessage() + func (m *LoginReply) GetResult() bool + func (m *LoginReply) Reset() + func (m *LoginReply) String() string + type LoginRequest struct + ClientId string + Password string + UserName string + func (*LoginRequest) Descriptor() ([]byte, []int) + func (*LoginRequest) ProtoMessage() + func (m *LoginRequest) GetClientId() string + func (m *LoginRequest) GetPassword() string + func (m *LoginRequest) GetUserName() string + func (m *LoginRequest) Reset() + func (m *LoginRequest) String() string + type LoginServer interface + LoginCheck func(context.Context, *LoginRequest) (*LoginReply, error)