authentication.proto 290 B

1234567891011121314
  1. syntax = "proto3";
  2. package authentication_service;
  3. option go_package = "./proto;authorization_service";
  4. service AuthenticationService {
  5. rpc GetAuthentication(AuthenticationRequest) returns(AuthenticationResponse);
  6. }
  7. message AuthenticationRequest {}
  8. message AuthenticationResponse {}