@yawetse/pkgcloud
Version:
An infrastructure-as-a-service agnostic cloud library for node.js
13 lines (10 loc) • 300 B
JavaScript
/*
* index.js: Top-level include for the MongoLab database module
*
* (C) 2012 Charlie Robbins, Ken Perkins, Ross Kukulinski & the Contributors.
*
*/
exports.Client = require('./client').Client;
exports.createClient = function createClient(options) {
return new exports.Client(options);
};