Mari's guided journal software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
362 B

import {addEntryCommand} from "./commands/AddEntry";
import {updateEmpathyGuideCommand} from "./commands/UpdateEmpathyGuide";
import yargs from "yargs"
yargs
.scriptName("mari-status-bar")
.command(addEntryCommand())
.command(updateEmpathyGuideCommand())
.demandCommand()
.parseAsync()
.catch((err) => {
console.error(err)
})