blob: 299ecaf6399f93e13a5e42d96a5a864a162f569e [file] [log] [blame]
Austin Schuh7bc59052020-02-16 23:48:33 -08001include "aos/configuration.fbs";
2
3namespace aos.message_bridge;
4
5table ClientOffset {
6 node:Node;
7
8 monotonic_offset:int64;
9}
10
11table Timestamp {
12 offsets:[ClientOffset];
13}
14
15root_type Timestamp;