mirror of
https://gitlab.com/veilid/veilid.git
synced 2024-12-18 04:04:43 -05:00
20 lines
372 B
Cap'n Proto
20 lines
372 B
Cap'n Proto
@0xd29582d26b2fb073;
|
|
|
|
interface Registration {}
|
|
|
|
interface VeilidServer {
|
|
|
|
register @0 (veilidClient: VeilidClient) -> (registration: Registration, state: Text);
|
|
debug @1 (what: Text) -> (output: Text);
|
|
|
|
attach @2 ();
|
|
detach @3 ();
|
|
shutdown @4 ();
|
|
getState @5 () -> (state: Text);
|
|
}
|
|
|
|
interface VeilidClient {
|
|
|
|
update @0 (veilidUpdate: Text);
|
|
|
|
} |