two level routing (based on how network switches work) (#241)

This commit is contained in:
Mike Sawka
2024-08-16 16:49:49 -07:00
committed by GitHub
parent 03587184a0
commit ae7d85630b
5 changed files with 132 additions and 62 deletions
+5
View File
@@ -7,6 +7,11 @@ import * as WOS from "./wos";
// WshServerCommandToDeclMap
class WshServerType {
// command "announce" [call]
AnnounceCommand(data: string, opts?: RpcOpts): Promise<void> {
return WOS.wshServerRpcHelper_call("announce", data, opts);
}
// command "authenticate" [call]
AuthenticateCommand(data: string, opts?: RpcOpts): Promise<void> {
return WOS.wshServerRpcHelper_call("authenticate", data, opts);