UNPKG

@yawetse/pkgcloud

Version:

An infrastructure-as-a-service agnostic cloud library for node.js

16 lines (13 loc) 356 B
/* * index.js: Top-level include for the OpenStack CDN module * * (C) 2014 Rackspace * Shaunak Kashyap * MIT LICENSE */ exports.Client = require('./client').Client; exports.Service = require('./service').Service; exports.Flavor = require('./flavor').Flavor; exports.createClient = function (options) { return new exports.Client(options); };