mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
12 lines
214 B
JavaScript
12 lines
214 B
JavaScript
|
|
|
|
export default function (api) {
|
|
api.registerCommand({
|
|
command: 'help',
|
|
description: 'show command helps',
|
|
async fn({ program }) {
|
|
program.outputHelp();
|
|
}
|
|
});
|
|
}
|