mirror of
https://github.com/openziti/zrok.git
synced 2024-11-27 02:23:23 +01:00
13 lines
216 B
Protocol Buffer
13 lines
216 B
Protocol Buffer
option go_package = "github.com/openziti/zrok/agent/agentGrpc";
|
|
|
|
service Agent {
|
|
rpc Version(VersionRequest) returns (VersionReply) {}
|
|
}
|
|
|
|
message VersionRequest {
|
|
}
|
|
|
|
message VersionReply {
|
|
required string v = 1;
|
|
}
|