Files
memgraph/src/interface/trial.thrift
2022-08-17 09:51:19 +00:00

21 lines
268 B
Thrift

struct Ping {
1: binary message;
}
struct Pong{
1: binary message;
}
struct ValueToAdd{
1: i64 val;
}
struct ValueToAddResopnse{
1: i64 new_val;
}
service PingPong {
Pong ping(1: Ping req)
ValueToAddResopnse AddValue(1: ValueToAdd req)
}