capnp ids

This commit is contained in:
John Smith
2022-11-12 22:20:31 -05:00
parent 94d1598ce1
commit 662ed03d19
15 changed files with 117 additions and 170 deletions

View File

@@ -1,15 +1,15 @@
@0xd29582d26b2fb073;
struct ApiResult {
struct ApiResult @0x8111724bdb812929 {
union {
ok @0 :Text;
err @1 :Text;
}
}
interface Registration {}
interface Registration @0xdd45f30a7c22e391 {}
interface VeilidServer {
interface VeilidServer @0xcb2c699f14537f94 {
register @0 (veilidClient :VeilidClient) -> (registration :Registration, state :Text);
debug @1 (command :Text) -> (result :ApiResult);
attach @2 () -> (result :ApiResult);
@@ -20,6 +20,6 @@ interface VeilidServer {
appCallReply @7 (id :UInt64, message :Data) -> (result :ApiResult);
}
interface VeilidClient {
interface VeilidClient @0xbfcea60fb2ba4736 {
update @0 (veilidUpdate :Text);
}