UNPKG

@axway/amplify-central-azure-extension

Version:

Create AMPLIFY Central resources from Azure API Management APIs

18 lines (15 loc) 402 B
// @ts-ignore import CLI from "cli-kit"; import { banner } from "./banner"; const { name, version } = require("../package.json"); import { commands } from "./src/commands"; import { ensureConfigFileExists } from "./src/utils"; ensureConfigFileExists(); export default new CLI({ title: "AMPLIFY Central Extension for Azure API Management", name, banner, version, help: true, commands, });