syntax = "proto3"; package authentication_service; option go_package = "./proto;authorization_service"; service AuthenticationService { rpc GetAuthentication(AuthenticationRequest) returns(AuthenticationResponse); } message AuthenticationRequest {} message AuthenticationResponse {}