blob: 67e5015f065f25b072bbce14e69b676f40fa26c7 [file] [log] [blame]
Alex Perrycb7da4b2019-08-28 19:35:56 -07001namespace aos.examples;
2
3table Ping {
4 value:int;
5 send_time:long;
6}
7
8table Pong {
9 value:int;
10 initial_send_time:long;
11}
12
13root_type Ping;
14root_type Pong;