1
0
silverbullet/web/syscalls/clientStore.ts

15 lines
460 B
TypeScript
Raw Normal View History

import { proxySyscalls } from "../../plugos/syscalls/transport.ts";
import { SysCallMapping } from "../../plugos/system.ts";
2022-04-04 13:25:07 +00:00
// DEPRECATED, use store directly
export function clientStoreSyscalls(
storeCalls: SysCallMapping,
): SysCallMapping {
2022-04-05 15:02:17 +00:00
return proxySyscalls(
2022-04-04 13:25:07 +00:00
["clientStore.get", "clientStore.set", "clientStore.delete"],
(ctx, name, ...args) => {
return storeCalls[name.replace("clientStore.", "store.")](ctx, ...args);
},
2022-04-04 13:25:07 +00:00
);
}