UNPKG

@commercelayer/cli

Version:
23 lines (22 loc) 560 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const core_1 = require("@oclif/core"); class Noc extends core_1.Command { static hidden = true; static flags = { organization: core_1.Flags.string({ required: false, hidden: true, }), accessToken: core_1.Flags.string({ required: false, hidden: true, }), }; async run() { const output = '-= NoC =-'; this.log(output); return output; } } exports.default = Noc;