1
0
silverbullet/webapp/syscalls/indexer.ts

18 lines
453 B
TypeScript
Raw Normal View History

2022-03-25 11:03:06 +00:00
import { Space } from "../space";
2022-03-27 09:31:12 +00:00
import { SysCallMapping } from "../../plugos/system";
import { transportSyscalls } from "../../plugos/syscalls/transport";
2022-03-25 11:03:06 +00:00
export default function indexerSyscalls(space: Space): SysCallMapping {
return transportSyscalls(
[
"scanPrefixForPage",
"scanPrefixGlobal",
"get",
"set",
"batchSet",
"delete",
],
(name, ...args) => space.wsCall(`index.${name}`, ...args)
);
}