13 lines
219 B
Protocol Buffer
13 lines
219 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package astontest;
|
|
option go_package = "git.derfenix.pro/fenix/astontest/api";
|
|
|
|
service AstonTest {
|
|
rpc Ping(stream PingPong) returns (stream PingPong);
|
|
}
|
|
|
|
message PingPong {
|
|
string value = 1;
|
|
}
|