179 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			179 lines
		
	
	
		
			5.8 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
// Code generated by protoc-gen-go.
 | 
						|
// source: services/session/session.proto
 | 
						|
// DO NOT EDIT!
 | 
						|
 | 
						|
/*
 | 
						|
Package session is a generated protocol buffer package.
 | 
						|
 | 
						|
It is generated from these files:
 | 
						|
	services/session/session.proto
 | 
						|
 | 
						|
It has these top-level messages:
 | 
						|
	LoginRequest
 | 
						|
	LoginResponse
 | 
						|
*/
 | 
						|
package session
 | 
						|
 | 
						|
import proto "github.com/golang/protobuf/proto"
 | 
						|
import fmt "fmt"
 | 
						|
import math "math"
 | 
						|
 | 
						|
import (
 | 
						|
	context "golang.org/x/net/context"
 | 
						|
	grpc "google.golang.org/grpc"
 | 
						|
)
 | 
						|
 | 
						|
// Reference imports to suppress errors if they are not otherwise used.
 | 
						|
var _ = proto.Marshal
 | 
						|
var _ = fmt.Errorf
 | 
						|
var _ = math.Inf
 | 
						|
 | 
						|
// This is a compile-time assertion to ensure that this generated file
 | 
						|
// is compatible with the proto package it is being compiled against.
 | 
						|
// A compilation error at this line likely means your copy of the
 | 
						|
// proto package needs to be updated.
 | 
						|
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
 | 
						|
 | 
						|
type LoginRequest struct {
 | 
						|
	Username string `protobuf:"bytes,1,opt,name=username" json:"username,omitempty"`
 | 
						|
	Password string `protobuf:"bytes,2,opt,name=password" json:"password,omitempty"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *LoginRequest) Reset()                    { *m = LoginRequest{} }
 | 
						|
func (m *LoginRequest) String() string            { return proto.CompactTextString(m) }
 | 
						|
func (*LoginRequest) ProtoMessage()               {}
 | 
						|
func (*LoginRequest) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
 | 
						|
 | 
						|
func (m *LoginRequest) GetUsername() string {
 | 
						|
	if m != nil {
 | 
						|
		return m.Username
 | 
						|
	}
 | 
						|
	return ""
 | 
						|
}
 | 
						|
 | 
						|
func (m *LoginRequest) GetPassword() string {
 | 
						|
	if m != nil {
 | 
						|
		return m.Password
 | 
						|
	}
 | 
						|
	return ""
 | 
						|
}
 | 
						|
 | 
						|
type LoginResponse struct {
 | 
						|
	Token  string `protobuf:"bytes,1,opt,name=token" json:"token,omitempty"`
 | 
						|
	ErrMsg string `protobuf:"bytes,2,opt,name=err_msg,json=errMsg" json:"err_msg,omitempty"`
 | 
						|
}
 | 
						|
 | 
						|
func (m *LoginResponse) Reset()                    { *m = LoginResponse{} }
 | 
						|
func (m *LoginResponse) String() string            { return proto.CompactTextString(m) }
 | 
						|
func (*LoginResponse) ProtoMessage()               {}
 | 
						|
func (*LoginResponse) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
 | 
						|
 | 
						|
func (m *LoginResponse) GetToken() string {
 | 
						|
	if m != nil {
 | 
						|
		return m.Token
 | 
						|
	}
 | 
						|
	return ""
 | 
						|
}
 | 
						|
 | 
						|
func (m *LoginResponse) GetErrMsg() string {
 | 
						|
	if m != nil {
 | 
						|
		return m.ErrMsg
 | 
						|
	}
 | 
						|
	return ""
 | 
						|
}
 | 
						|
 | 
						|
func init() {
 | 
						|
	proto.RegisterType((*LoginRequest)(nil), "session.LoginRequest")
 | 
						|
	proto.RegisterType((*LoginResponse)(nil), "session.LoginResponse")
 | 
						|
}
 | 
						|
 | 
						|
// Reference imports to suppress errors if they are not otherwise used.
 | 
						|
var _ context.Context
 | 
						|
var _ grpc.ClientConn
 | 
						|
 | 
						|
// This is a compile-time assertion to ensure that this generated file
 | 
						|
// is compatible with the grpc package it is being compiled against.
 | 
						|
const _ = grpc.SupportPackageIsVersion4
 | 
						|
 | 
						|
// Client API for SessionService service
 | 
						|
 | 
						|
type SessionServiceClient interface {
 | 
						|
	Login(ctx context.Context, in *LoginRequest, opts ...grpc.CallOption) (*LoginResponse, error)
 | 
						|
}
 | 
						|
 | 
						|
type sessionServiceClient struct {
 | 
						|
	cc *grpc.ClientConn
 | 
						|
}
 | 
						|
 | 
						|
func NewSessionServiceClient(cc *grpc.ClientConn) SessionServiceClient {
 | 
						|
	return &sessionServiceClient{cc}
 | 
						|
}
 | 
						|
 | 
						|
func (c *sessionServiceClient) Login(ctx context.Context, in *LoginRequest, opts ...grpc.CallOption) (*LoginResponse, error) {
 | 
						|
	out := new(LoginResponse)
 | 
						|
	err := grpc.Invoke(ctx, "/session.SessionService/Login", in, out, c.cc, opts...)
 | 
						|
	if err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	return out, nil
 | 
						|
}
 | 
						|
 | 
						|
// Server API for SessionService service
 | 
						|
 | 
						|
type SessionServiceServer interface {
 | 
						|
	Login(context.Context, *LoginRequest) (*LoginResponse, error)
 | 
						|
}
 | 
						|
 | 
						|
func RegisterSessionServiceServer(s *grpc.Server, srv SessionServiceServer) {
 | 
						|
	s.RegisterService(&_SessionService_serviceDesc, srv)
 | 
						|
}
 | 
						|
 | 
						|
func _SessionService_Login_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
 | 
						|
	in := new(LoginRequest)
 | 
						|
	if err := dec(in); err != nil {
 | 
						|
		return nil, err
 | 
						|
	}
 | 
						|
	if interceptor == nil {
 | 
						|
		return srv.(SessionServiceServer).Login(ctx, in)
 | 
						|
	}
 | 
						|
	info := &grpc.UnaryServerInfo{
 | 
						|
		Server:     srv,
 | 
						|
		FullMethod: "/session.SessionService/Login",
 | 
						|
	}
 | 
						|
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
 | 
						|
		return srv.(SessionServiceServer).Login(ctx, req.(*LoginRequest))
 | 
						|
	}
 | 
						|
	return interceptor(ctx, in, info, handler)
 | 
						|
}
 | 
						|
 | 
						|
var _SessionService_serviceDesc = grpc.ServiceDesc{
 | 
						|
	ServiceName: "session.SessionService",
 | 
						|
	HandlerType: (*SessionServiceServer)(nil),
 | 
						|
	Methods: []grpc.MethodDesc{
 | 
						|
		{
 | 
						|
			MethodName: "Login",
 | 
						|
			Handler:    _SessionService_Login_Handler,
 | 
						|
		},
 | 
						|
	},
 | 
						|
	Streams:  []grpc.StreamDesc{},
 | 
						|
	Metadata: "services/session/session.proto",
 | 
						|
}
 | 
						|
 | 
						|
func init() { proto.RegisterFile("services/session/session.proto", fileDescriptor0) }
 | 
						|
 | 
						|
var fileDescriptor0 = []byte{
 | 
						|
	// 188 bytes of a gzipped FileDescriptorProto
 | 
						|
	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xe2, 0x92, 0x2b, 0x4e, 0x2d, 0x2a,
 | 
						|
	0xcb, 0x4c, 0x4e, 0x2d, 0xd6, 0x2f, 0x4e, 0x2d, 0x2e, 0xce, 0xcc, 0xcf, 0x83, 0xd1, 0x7a, 0x05,
 | 
						|
	0x45, 0xf9, 0x25, 0xf9, 0x42, 0xec, 0x50, 0xae, 0x92, 0x1b, 0x17, 0x8f, 0x4f, 0x7e, 0x7a, 0x66,
 | 
						|
	0x5e, 0x50, 0x6a, 0x61, 0x69, 0x6a, 0x71, 0x89, 0x90, 0x14, 0x17, 0x47, 0x69, 0x71, 0x6a, 0x51,
 | 
						|
	0x5e, 0x62, 0x6e, 0xaa, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0x67, 0x10, 0x9c, 0x0f, 0x92, 0x2b, 0x48,
 | 
						|
	0x2c, 0x2e, 0x2e, 0xcf, 0x2f, 0x4a, 0x91, 0x60, 0x82, 0xc8, 0xc1, 0xf8, 0x4a, 0x76, 0x5c, 0xbc,
 | 
						|
	0x50, 0x73, 0x8a, 0x0b, 0xf2, 0xf3, 0x8a, 0x53, 0x85, 0x44, 0xb8, 0x58, 0x4b, 0xf2, 0xb3, 0x53,
 | 
						|
	0xf3, 0xa0, 0xa6, 0x40, 0x38, 0x42, 0xe2, 0x5c, 0xec, 0xa9, 0x45, 0x45, 0xf1, 0xb9, 0xc5, 0xe9,
 | 
						|
	0x50, 0x13, 0xd8, 0x52, 0x8b, 0x8a, 0x7c, 0x8b, 0xd3, 0x8d, 0xbc, 0xb8, 0xf8, 0x82, 0x21, 0x4e,
 | 
						|
	0x0a, 0x86, 0xb8, 0x5c, 0xc8, 0x82, 0x8b, 0x15, 0x6c, 0xa2, 0x90, 0xa8, 0x1e, 0xcc, 0xed, 0xc8,
 | 
						|
	0x2e, 0x95, 0x12, 0x43, 0x17, 0x86, 0x58, 0xac, 0xc4, 0x90, 0xc4, 0x06, 0xf6, 0xa3, 0x31, 0x20,
 | 
						|
	0x00, 0x00, 0xff, 0xff, 0x29, 0x3f, 0x91, 0xc7, 0x05, 0x01, 0x00, 0x00,
 | 
						|
}
 |