pycapnp/test/object.capnp
2013-09-18 17:19:57 -07:00

21 lines
226 B
Cap'n Proto

@0x8186ddb142b58556;
struct Person {
id @0 :UInt32;
name @1 :Text;
}
struct Place {
id @0 :UInt32;
name @1 :Text;
}
struct Thing {
id @0 :UInt64;
value @1 :UInt64;
}
struct TestObject {
object @0 :Object;
}