@sansitech/pkgcloud
Version:
A provider agnostic cloud library for Node.js
16 lines (14 loc) • 422 B
JavaScript
/*
* index.js: Top-level include for the Rackspace orchestration module
*
* (C) 2014 Rackspace
* Ken Perkins
* MIT LICENSE
*
*/
exports.Client = require('./client').Client;
exports.Stack = require('../../openstack/orchestration/stack').Stack;
exports.Resource = require('../../openstack/orchestration/resource').Resource;
exports.createClient = function (options) {
return new exports.Client(options);
};