@yawetse/pkgcloud
Version:
An infrastructure-as-a-service agnostic cloud library for node.js
17 lines (14 loc) • 361 B
JavaScript
/*
* index.js: Top-level include for the Rackspace storage module
*
* (C) 2013 Rackspace
* Ken Perkins
* MIT LICENSE
*
*/
exports.Client = require('./client').Client;
exports.Container = require('./container').Container;
exports.File = require('./file').File;
exports.createClient = function (options) {
return new exports.Client(options);
};