15 lines
259 B
Protocol Buffer
15 lines
259 B
Protocol Buffer
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;
|
|
}
|