UNPKG

1.24 kBJavaScriptView Raw
1// Copyright IBM Corp. 2016. All Rights Reserved.
2// Node module: apiconnect-cli-util
3// US Government Users Restricted Rights - Use, duplication or disclosure
4// restricted by GSA ADP Schedule Contract with IBM Corp.
5
6/********************************************************* {COPYRIGHT-TOP} ***
7 * IBM Confidential
8 * OCO Source Materials
9 * 5725-C11, 5725-C12, 7198-8FX, 5725-F70, 5725-F71, 5725-F72, 5725-L30
10 *
11 * (C) Copyright IBM Corporation 2015 All Rights Reserved.
12 *
13 * The source code for this program is not published or otherwise
14 * divested of its trade secrets, irrespective of what has been
15 * deposited with the U.S. Copyright Office.
16 ********************************************************* {COPYRIGHT-END} **/
17
18var SG = require('strong-globalize');
19SG.SetRootDir(__dirname);
20
21var RemoteApps = require('./lib/util/remote-apps');
22var ServerError = require('./lib/util/server-error');
23var Util = require('./lib/util/util');
24var bluemixSupport = require('./lib/bluemix');
25var serverMeta = require('./lib/util/server-meta');
26
27module.exports.RemoteApps = RemoteApps;
28module.exports.ServerError = ServerError;
29module.exports.Util = Util;
30module.exports.bluemixSupport = bluemixSupport;
31module.exports.serverMeta = serverMeta;