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) 252 B
const { BaseCommand } = require('../../lib') class Ui extends BaseCommand { init (commander) { } async do () { await console.log('Hello World.') } } Ui.command = 'ui' Ui.alias = 'u' Ui.description= 'start cf webui' module.exports = Ui