You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
583 B
23 lines
583 B
package logic |
|
|
|
import ( |
|
"context" |
|
"sonet/api/gen/auth" |
|
) |
|
|
|
type AuthServer struct { |
|
auth.UnimplementedAuthServer |
|
} |
|
|
|
func (s *AuthServer) Login(ctx context.Context, req *auth.ReqLogin) (*auth.ResLogin, error) { |
|
return nil, nil |
|
} |
|
func (s *AuthServer) Verify(ctx context.Context, req *auth.ReqVerify) (*auth.Subject, error) { |
|
return nil, nil |
|
} |
|
func (s *AuthServer) Registry(ctx context.Context, req *auth.ReqRegistry) (*auth.Subject, error) { |
|
return nil, nil |
|
} |
|
func (s *AuthServer) FindByUid(ctx context.Context, req *auth.ReqFindByUid) (*auth.Subject, error) { |
|
return nil, nil |
|
}
|
|
|