central_api_gateway/initialize/initialize.proto

15 lines
219 B
Protocol Buffer
Raw Normal View History

2017-05-20 08:01:21 +00:00
syntax = "proto3";
message Empty {}
message AgentInfo {
string agentId = 1;
}
message InitResponse {
string secretKey = 1;
}
service Initializer {
rpc agentStarting(AgentInfo) returns (InitResponse) {}
}