2021-11-22 11:28:30 -05:00
|
|
|
@0xd29582d26b2fb073;
|
|
|
|
|
|
|
|
interface Registration {}
|
|
|
|
|
|
|
|
interface VeilidServer {
|
|
|
|
|
2022-06-07 21:31:05 -04:00
|
|
|
register @0 (veilidClient: VeilidClient) -> (registration: Registration, state: Text);
|
2022-01-18 12:33:14 -05:00
|
|
|
debug @1 (what: Text) -> (output: Text);
|
2021-11-22 11:28:30 -05:00
|
|
|
|
2022-01-18 12:33:14 -05:00
|
|
|
attach @2 ();
|
|
|
|
detach @3 ();
|
|
|
|
shutdown @4 ();
|
2022-06-07 21:31:05 -04:00
|
|
|
getState @5 () -> (state: Text);
|
2021-11-22 11:28:30 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
interface VeilidClient {
|
|
|
|
|
2022-06-07 21:31:05 -04:00
|
|
|
update @0 (veilidUpdate: Text);
|
2021-11-22 11:28:30 -05:00
|
|
|
|
|
|
|
}
|