add gettest proto file
This commit is contained in:
parent
3ba37f555f
commit
f25fe45818
1 changed files with 14 additions and 0 deletions
14
gettest/v1/gettest.proto
Normal file
14
gettest/v1/gettest.proto
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
syntax = "proto3";
|
||||||
|
|
||||||
|
package gettest.v1;
|
||||||
|
|
||||||
|
import "google/protobuf/timestamp.proto";
|
||||||
|
import "google/protobuf/empty.proto";
|
||||||
|
|
||||||
|
service GetTestService {
|
||||||
|
rpc GetTest (google.protobuf.Empty) returns (GetTestResponse);
|
||||||
|
}
|
||||||
|
|
||||||
|
message GetTestResponse {
|
||||||
|
int32 id = 1;
|
||||||
|
}
|
Loading…
Reference in a new issue