UNPKG

actionhero

Version:

actionhero.js is a multi-transport API Server with integrated cluster capabilities and delayed tasks

15 lines (12 loc) 245 B
import { CLI } from "../../../../src/index"; export class Version extends CLI { constructor() { super(); this.name = "hello"; this.description = "I say hello"; } async run() { console.log("hello"); return true; } }