1
0
silverbullet/cli/plug_test.ts

8 lines
185 B
TypeScript
Raw Normal View History

import { datastore } from "$sb/syscalls.ts";
2023-08-04 16:56:55 +00:00
export async function run() {
console.log("Hello from plug_test.ts");
await datastore.set(["plug_test"], "Hello");
2023-08-04 16:56:55 +00:00
return "Hello";
}