UNPKG

@yawetse/pkgcloud

Version:

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

16 lines (13 loc) 362 B
/* * index.js: Top-level include for the OpenStack orchestration module * * (C) 2014 Rackspace * Ken Perkins * MIT LICENSE */ exports.Client = require('./client').Client; exports.Stack = require('./stack').Stack; exports.Resource = require('./resource').Resource; exports.createClient = function (options) { return new exports.Client(options); };