authentication.go 278 B

12345678910111213
  1. package handler
  2. import (
  3. "context"
  4. pb "sghgogs.com/sghblog/authorization-service/proto"
  5. )
  6. type Authentication struct {
  7. }
  8. func (svc *Authentication) GetAuthentication(ctx context.Context, auth *pb.AuthenticationRequest, rsp *pb.AuthenticationResponse) error {
  9. return nil
  10. }