11 lines
148 B
Protocol Buffer
11 lines
148 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package nginx;
|
||
|
|
||
|
message Empty {
|
||
|
}
|
||
|
|
||
|
service Nginx {
|
||
|
rpc Hello(Empty) returns (Empty) {}
|
||
|
rpc World(Empty) returns (Empty) {}
|
||
|
}
|