2023-08-15 18:24:02 +00:00
|
|
|
import { editor, sync } from "$sb/silverbullet-syscall/mod.ts";
|
2023-07-02 09:25:32 +00:00
|
|
|
|
|
|
|
export async function syncSpaceCommand() {
|
|
|
|
await editor.flashNotification("Syncing space...");
|
2023-08-15 18:24:02 +00:00
|
|
|
await sync.scheduleSpaceSync();
|
2023-07-02 09:25:32 +00:00
|
|
|
await editor.flashNotification("Done.");
|
|
|
|
}
|