- removed: session-service - updated: moved health check out of consul registration - updated: get service info to pull the service from the default namespace for the service account - updated: the rest of the services to be able to handle the new database tables
16 lines
272 B
Protocol Buffer
16 lines
272 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package session_db_api;
|
|
|
|
service SessionService {
|
|
rpc GetSession(GetSessionRequest) returns (GetSessionResponse);
|
|
}
|
|
|
|
message GetSessionRequest {
|
|
string session_id = 1;
|
|
}
|
|
|
|
message GetSessionResponse {
|
|
string session_id = 1;
|
|
string user_id = 2;
|
|
} |