central_api_gateway/initialize/initialize.proto

14 lines
202 B
Protocol Buffer
Raw Normal View History

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