UNPKG

@sap/cli-core

Version:

Command-Line Interface (CLI) Core Module

17 lines (16 loc) 781 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const refresh_command_1 = __importDefault(require("./refresh.command")); const reset_command_1 = __importDefault(require("./reset.command")); const show_command_1 = __importDefault(require("./show.command")); const check_command_1 = __importDefault(require("./check.command")); const secretsCommand = { type: "topCommand", command: "secrets", description: "work with the locally stored secrets", subCommands: [show_command_1.default, refresh_command_1.default, reset_command_1.default, check_command_1.default], }; exports.default = secretsCommand;