UNPKG

@agatee/cli

Version:

CLI for Agatee App

17 lines (16 loc) 591 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.NotFoundCMD = exports.NOT_FOUND_CMD_KEY = void 0; var console_1 = require("../../utils/console"); exports.NOT_FOUND_CMD_KEY = 'notfound'; var NotFoundCMD = /** @class */ (function () { function NotFoundCMD() { this.shortCmd = exports.NOT_FOUND_CMD_KEY; this.longCmd = exports.NOT_FOUND_CMD_KEY; } NotFoundCMD.prototype.exec = function () { (0, console_1.logError)('Agatee/CLI: Command not found'); }; return NotFoundCMD; }()); exports.NotFoundCMD = NotFoundCMD;