18 lines
228 B
Perl
18 lines
228 B
Perl
|
---
|
||
|
to: src/command/<%= name %>.js
|
||
|
---
|
||
|
|
||
|
const handler = async (config) => {
|
||
|
// DO SOMETHING
|
||
|
};
|
||
|
|
||
|
export default {
|
||
|
command: '<%= name %>',
|
||
|
desc : 'TODO',
|
||
|
builder: (yargs) => {
|
||
|
yargs
|
||
|
},
|
||
|
handler,
|
||
|
}
|
||
|
|