UNPKG

@yawetse/pkgcloud

Version:

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

13 lines (10 loc) 301 B
/* * index.js: Top-level include for the MongoHQ 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); };