123456789101112131415161718 |
- syntax = "proto3";
- option go_package = "dr_protocol_pb/";
- package dr.protocol;
- message EmptyRequest {}
- service Basic {
- rpc SoftwareInfo (EmptyRequest) returns (SoftwareInfoReply) {}
- }
- message SoftwareInfoReply {
- string module = 1;
- string desc = 2;
- string build = 3;
- string version = 4;
- }
|