mirror of https://github.com/laurent22/joplin.git
24 lines
376 B
JavaScript
24 lines
376 B
JavaScript
const { BaseCommand } = require("./base-command.js");
|
|
const { app } = require("./app.js");
|
|
const { _ } = require("lib/locale.js");
|
|
|
|
class Command extends BaseCommand {
|
|
usage() {
|
|
return "exit";
|
|
}
|
|
|
|
description() {
|
|
return _("Exits the application.");
|
|
}
|
|
|
|
compatibleUis() {
|
|
return ["gui"];
|
|
}
|
|
|
|
async action(args) {
|
|
await app().exit();
|
|
}
|
|
}
|
|
|
|
module.exports = Command;
|