UNPKG

@cloud-cli/cli

Version:

CLI for the Cloud CLI project

11 lines (10 loc) 465 B
import { callServer } from './call-server.js'; import { getCloudyConfig } from './configuration.js'; export { init, events, logInfo, logError } from './constants.js'; export { getConfig } from './configuration.js'; export { getStorage } from './storage.js'; export { readJson, writeJson } from './utils.js'; export async function run(command, args, settings) { settings || (settings = await getCloudyConfig()); return callServer(command, args, settings); }