123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
- // versions:
- // - protoc-gen-go-grpc v1.5.1
- // - protoc v5.28.0--rc2
- // source: rpc/protos/sso.proto
- //protoc --go_out=. --go-grpc_out=. rpc/protos/sso.proto
- package sso
- 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.64.0 or later.
- const _ = grpc.SupportPackageIsVersion9
- const (
- SSOLogin_Login_FullMethodName = "/rpc.SSOLogin/Login"
- )
- // SSOLoginClient is the client API for SSOLogin 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 SSOLoginClient interface {
- Login(ctx context.Context, in *LoginRequest, opts ...grpc.CallOption) (*LoginResponse, error)
- }
- type sSOLoginClient struct {
- cc grpc.ClientConnInterface
- }
- func NewSSOLoginClient(cc grpc.ClientConnInterface) SSOLoginClient {
- return &sSOLoginClient{cc}
- }
- func (c *sSOLoginClient) Login(ctx context.Context, in *LoginRequest, opts ...grpc.CallOption) (*LoginResponse, error) {
- cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
- out := new(LoginResponse)
- err := c.cc.Invoke(ctx, SSOLogin_Login_FullMethodName, in, out, cOpts...)
- if err != nil {
- return nil, err
- }
- return out, nil
- }
- // SSOLoginServer is the server API for SSOLogin service.
- // All implementations must embed UnimplementedSSOLoginServer
- // for forward compatibility.
- type SSOLoginServer interface {
- Login(context.Context, *LoginRequest) (*LoginResponse, error)
- mustEmbedUnimplementedSSOLoginServer()
- }
- // UnimplementedSSOLoginServer must be embedded to have
- // forward compatible implementations.
- //
- // NOTE: this should be embedded by value instead of pointer to avoid a nil
- // pointer dereference when methods are called.
- type UnimplementedSSOLoginServer struct{}
- func (UnimplementedSSOLoginServer) Login(context.Context, *LoginRequest) (*LoginResponse, error) {
- return nil, status.Errorf(codes.Unimplemented, "method Login not implemented")
- }
- func (UnimplementedSSOLoginServer) mustEmbedUnimplementedSSOLoginServer() {}
- func (UnimplementedSSOLoginServer) testEmbeddedByValue() {}
- // UnsafeSSOLoginServer may be embedded to opt out of forward compatibility for this service.
- // Use of this interface is not recommended, as added methods to SSOLoginServer will
- // result in compilation errors.
- type UnsafeSSOLoginServer interface {
- mustEmbedUnimplementedSSOLoginServer()
- }
- func RegisterSSOLoginServer(s grpc.ServiceRegistrar, srv SSOLoginServer) {
- // If the following call pancis, it indicates UnimplementedSSOLoginServer was
- // embedded by pointer and is nil. This will cause panics if an
- // unimplemented method is ever invoked, so we test this at initialization
- // time to prevent it from happening at runtime later due to I/O.
- if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
- t.testEmbeddedByValue()
- }
- s.RegisterService(&SSOLogin_ServiceDesc, srv)
- }
- func _SSOLogin_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.(SSOLoginServer).Login(ctx, in)
- }
- info := &grpc.UnaryServerInfo{
- Server: srv,
- FullMethod: SSOLogin_Login_FullMethodName,
- }
- handler := func(ctx context.Context, req interface{}) (interface{}, error) {
- return srv.(SSOLoginServer).Login(ctx, req.(*LoginRequest))
- }
- return interceptor(ctx, in, info, handler)
- }
- // SSOLogin_ServiceDesc is the grpc.ServiceDesc for SSOLogin service.
- // It's only intended for direct use with grpc.RegisterService,
- // and not to be introspected or modified (even as a copy)
- var SSOLogin_ServiceDesc = grpc.ServiceDesc{
- ServiceName: "rpc.SSOLogin",
- HandlerType: (*SSOLoginServer)(nil),
- Methods: []grpc.MethodDesc{
- {
- MethodName: "Login",
- Handler: _SSOLogin_Login_Handler,
- },
- },
- Streams: []grpc.StreamDesc{},
- Metadata: "rpc/protos/sso.proto",
- }
|