UNPKG

@axway/amplify-central-apigee-extension

Version:

Create AMPLIFY Central resources from Apigee API Proxies

18 lines (15 loc) 405 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 Apigee Edge API Proxies", name, banner, version, help: true, commands, });