central_api_gateway/initialize/initialize.proto
insanity@loafle.com eab524ca83 proto
2017-05-20 17:01:21 +09:00

15 lines
219 B
Protocol Buffer

syntax = "proto3";
message Empty {}
message AgentInfo {
string agentId = 1;
}
message InitResponse {
string secretKey = 1;
}
service Initializer {
rpc agentStarting(AgentInfo) returns (InitResponse) {}
}