UNPKG

994 BJavaScriptView Raw
1/********************************************************* {COPYRIGHT-TOP} ***
2 * Licensed Materials - Property of IBM
3 * 5725-Z22, 5725-Z63, 5725-U33, 5725-Z63
4 *
5 * (C) Copyright IBM Corporation 2016, 2017
6 *
7 * All Rights Reserved.
8 * US Government Users Restricted Rights - Use, duplication or disclosure
9 * restricted by GSA ADP Schedule Contract with IBM Corp.
10 ********************************************************** {COPYRIGHT-END} **/
11// Node module: apiconnect-cli-util
12
13
14var SG = require('strong-globalize');
15SG.SetRootDir(__dirname);
16
17var RemoteApps = require('./lib/util/remote-apps');
18var ServerError = require('./lib/util/server-error');
19var Util = require('./lib/util/util');
20var bluemixSupport = require('./lib/bluemix');
21var serverMeta = require('./lib/util/server-meta');
22
23module.exports.RemoteApps = RemoteApps;
24module.exports.ServerError = ServerError;
25module.exports.Util = Util;
26module.exports.bluemixSupport = bluemixSupport;
27module.exports.serverMeta = serverMeta;
28