2023-08-28 15:12:15 +00:00
|
|
|
import { editor } from "$sb/syscalls.ts";
|
2023-05-26 14:37:32 +00:00
|
|
|
import { version } from "../../version.ts";
|
|
|
|
|
|
|
|
export async function versionCommand() {
|
|
|
|
await editor.flashNotification(
|
|
|
|
`You are currently running SilverBullet ${version}`,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function gettingStartedCommand() {
|
|
|
|
await editor.openUrl("https://silverbullet.md/Getting%20Started");
|
|
|
|
}
|