14 lines
416 B
TypeScript
14 lines
416 B
TypeScript
|
import { SysCallMapping } from "../../plugbox/system";
|
||
|
import { Space } from "../space";
|
||
|
|
||
|
export function systemSyscalls(space: Space): SysCallMapping {
|
||
|
return {
|
||
|
async invokeFunctionOnServer(ctx, name: string, ...args: any[]) {
|
||
|
if (!ctx.plug) {
|
||
|
throw Error("No plug associated with context");
|
||
|
}
|
||
|
return await space.wsCall("invokeFunction", ctx.plug.name, name, ...args);
|
||
|
},
|
||
|
};
|
||
|
}
|