@commercelayer/cli-dev
Version:
Commerce Layer CLI development tools and helpers
14 lines (13 loc) • 334 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const core_1 = require("@oclif/core");
class Noc extends core_1.Command {
static hidden = true;
static flags = {};
async run() {
const output = '-= NoC =-';
this.log(output);
return output;
}
}
exports.default = Noc;