steadybit
Version:
Command-line interface to interact with the Steadybit API
12 lines • 567 B
JavaScript
;
// SPDX-License-Identifier: MIT
// SPDX-FileCopyrightText: 2022 Steadybit GmbH
Object.defineProperty(exports, "__esModule", { value: true });
const commander_1 = require("commander");
const show_1 = require("../config/show");
const program = new commander_1.Command();
program.command('profile', 'Configure authentication profiles.');
program.command('show').description('Show the active CLI configuration. Warning: Prints secrets!').action(show_1.show);
program.parseAsync(process.argv);
//# sourceMappingURL=steadybit-config.js.map