561aa6891f
Big bang migration to Deno 🤯
14 lines
531 B
TypeScript
14 lines
531 B
TypeScript
import { proxySyscalls } from "../../plugos/syscalls/transport.ts";
|
|
import { SysCallMapping } from "../../plugos/system.ts";
|
|
import { storeSyscalls } from "../../plugos/syscalls/store.dexie_browser.ts";
|
|
|
|
export function clientStoreSyscalls(): SysCallMapping {
|
|
const storeCalls = storeSyscalls("local", "localData");
|
|
return proxySyscalls(
|
|
["clientStore.get", "clientStore.set", "clientStore.delete"],
|
|
(ctx, name, ...args) => {
|
|
return storeCalls[name.replace("clientStore.", "store.")](ctx, ...args);
|
|
},
|
|
);
|
|
}
|