@expressots/cli
Version:
Expressots CLI - modern, fast, lightweight nodejs web framework (@cli)
16 lines (15 loc) • 401 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.helpCommand = void 0;
const form_1 = require("./form");
const helpCommand = () => {
return {
command: "resources",
describe: "Resource list.",
aliases: ["r"],
handler: async () => {
await (0, form_1.helpForm)();
},
};
};
exports.helpCommand = helpCommand;