| // Code generated by protoc-gen-go. DO NOT EDIT. |
| // source: auth/auth_service.proto |
| |
| package auth |
| |
| import ( |
| context "context" |
| fmt "fmt" |
| proto "github.com/golang/protobuf/proto" |
| grpc "google.golang.org/grpc" |
| math "math" |
| ) |
| |
| // 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.ProtoPackageIsVersion3 // please upgrade the proto package |
| |
| func init() { proto.RegisterFile("auth/auth_service.proto", fileDescriptor_eea8da14b90d2639) } |
| |
| var fileDescriptor_eea8da14b90d2639 = []byte{ |
| // 96 bytes of a gzipped FileDescriptorProto |
| 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4f, 0x2c, 0x2d, 0xc9, |
| 0xd0, 0x07, 0x11, 0xf1, 0xc5, 0xa9, 0x45, 0x65, 0x99, 0xc9, 0xa9, 0x7a, 0x05, 0x45, 0xf9, 0x25, |
| 0xf9, 0x42, 0x2c, 0x20, 0x31, 0x29, 0x7e, 0xb8, 0x34, 0x44, 0xd8, 0xc8, 0x8c, 0x8b, 0xdb, 0xb1, |
| 0xb4, 0x24, 0x23, 0x18, 0xa2, 0x56, 0x48, 0x9d, 0x8b, 0x05, 0xc4, 0x15, 0xe2, 0xd5, 0x03, 0xab, |
| 0x01, 0xb1, 0x83, 0x52, 0x0b, 0xa5, 0xf8, 0x90, 0xb9, 0xc5, 0x05, 0x4a, 0x0c, 0x49, 0x6c, 0x60, |
| 0xed, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xbf, 0x68, 0x6d, 0x3f, 0x70, 0x00, 0x00, 0x00, |
| } |
| |
| // 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 |
| |
| // AuthServiceClient is the client API for AuthService service. |
| // |
| // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream. |
| type AuthServiceClient interface { |
| Auth(ctx context.Context, in *AuthReq, opts ...grpc.CallOption) (*AuthResp, error) |
| } |
| |
| type authServiceClient struct { |
| cc *grpc.ClientConn |
| } |
| |
| func NewAuthServiceClient(cc *grpc.ClientConn) AuthServiceClient { |
| return &authServiceClient{cc} |
| } |
| |
| func (c *authServiceClient) Auth(ctx context.Context, in *AuthReq, opts ...grpc.CallOption) (*AuthResp, error) { |
| out := new(AuthResp) |
| err := c.cc.Invoke(ctx, "/auth.AuthService/Auth", in, out, opts...) |
| if err != nil { |
| return nil, err |
| } |
| return out, nil |
| } |
| |
| // AuthServiceServer is the server API for AuthService service. |
| type AuthServiceServer interface { |
| Auth(context.Context, *AuthReq) (*AuthResp, error) |
| } |
| |
| func RegisterAuthServiceServer(s *grpc.Server, srv AuthServiceServer) { |
| s.RegisterService(&_AuthService_serviceDesc, srv) |
| } |
| |
| func _AuthService_Auth_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { |
| in := new(AuthReq) |
| if err := dec(in); err != nil { |
| return nil, err |
| } |
| if interceptor == nil { |
| return srv.(AuthServiceServer).Auth(ctx, in) |
| } |
| info := &grpc.UnaryServerInfo{ |
| Server: srv, |
| FullMethod: "/auth.AuthService/Auth", |
| } |
| handler := func(ctx context.Context, req interface{}) (interface{}, error) { |
| return srv.(AuthServiceServer).Auth(ctx, req.(*AuthReq)) |
| } |
| return interceptor(ctx, in, info, handler) |
| } |
| |
| var _AuthService_serviceDesc = grpc.ServiceDesc{ |
| ServiceName: "auth.AuthService", |
| HandlerType: (*AuthServiceServer)(nil), |
| Methods: []grpc.MethodDesc{ |
| { |
| MethodName: "Auth", |
| Handler: _AuthService_Auth_Handler, |
| }, |
| }, |
| Streams: []grpc.StreamDesc{}, |
| Metadata: "auth/auth_service.proto", |
| } |