UNPKG

@atools/cf

Version:

A guided, interactive CLI framework for Node.js that helps you create elegant command-line tools with minimal effort.

18 lines (12 loc) 281 B
const { BaseCommand } = require('../../lib') class Remove extends BaseCommand { init (commander) { } async do () { await console.log('Hello World.') } } Remove.command = 'remove' Remove.alias = 'rm' Remove.description= 'remove one command' module.exports = Remove