@sap/cli-core
Version:
Command-Line Interface (CLI) Core Module
12 lines (11 loc) • 430 B
JavaScript
import refreshCommand from "./refresh.command.js";
import resetCommand from "./reset.command.js";
import showCommand from "./show.command.js";
import checkCommand from "./check.command.js";
const secretsCommand = {
type: "topCommand",
command: "secrets",
description: "work with the locally stored secrets",
subCommands: [showCommand, refreshCommand, resetCommand, checkCommand],
};
export default secretsCommand;