14 lines
202 B
Protocol Buffer
14 lines
202 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
|
||
|
message AgentInfo {
|
||
|
string agentId = 1;
|
||
|
}
|
||
|
|
||
|
message InitResponse {
|
||
|
string secretKey = 1;
|
||
|
}
|
||
|
|
||
|
service Initializer {
|
||
|
rpc agentStarting(AgentInfo) returns (InitResponse) {}
|
||
|
}
|