mirror of
https://github.com/capnproto/pycapnp.git
synced 2025-03-04 16:35:04 +01:00
13 lines
150 B
Cap'n Proto
13 lines
150 B
Cap'n Proto
@0x84249be5c3bff005;
|
|
|
|
interface Foo {
|
|
foo @0 () -> (val :UInt32);
|
|
}
|
|
|
|
struct Bar {
|
|
foo @0 :Foo;
|
|
}
|
|
|
|
interface Baz {
|
|
grault @0 () -> (bar: Bar);
|
|
}
|