UNPKG

hades-cli

Version:
17 lines (16 loc) 431 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); require("reflect-metadata"); const command_1 = require("@oclif/command"); class Key extends command_1.Command { async run() { const { args, flags } = this.parse(Key); console.log('Hello!!'); } } exports.default = Key; Key.description = 'Test command'; Key.flags = { help: command_1.flags.help({ char: 'h' }) }; Key.args = [];