Skip to content

Commit

Permalink
authentication service spec
Browse files Browse the repository at this point in the history
  • Loading branch information
Kleak committed May 16, 2019
1 parent 3d797a3 commit 947769d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions protos/services/authentication_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,11 @@ message SigninRequest {
}

service AuthenticationService {
/// In the metadata the client will find the Authorization key with the token
/// in the value
rpc signin(SigninRequest) returns (google.protobuf.Empty);

/// The client must send in the metadata the Authorization key with the token
/// in the value
rpc signout(google.protobuf.Empty) returns (google.protobuf.Empty);
}

0 comments on commit 947769d

Please sign in to comment.