15 lines
219 B
Protocol Buffer
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) {}
|
|
} |