Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

16 lines
198 B
Protocol Buffer

syntax = "proto2";
package org.caf;
message Ping {
required int32 id = 1;
}
message Pong {
required int32 id = 1;
}
message PingOrPong {
optional Ping ping = 1;
optional Pong pong = 2;
}