UNPKG

@topgroup/diginext

Version:

A BUILD SERVER & CLI to deploy apps to any Kubernetes clusters.

13 lines (12 loc) 557 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.askToConnectRegistry = void 0; const ask_for_registry_1 = require("./ask-for-registry"); const connect_registry_1 = require("./connect-registry"); const askToConnectRegistry = async (options) => { const registry = await (0, ask_for_registry_1.askForRegistry)(); // start connecting container registry... const result = await (0, connect_registry_1.connectRegistry)(registry, options); return result; }; exports.askToConnectRegistry = askToConnectRegistry;