UNPKG

@yawetse/pkgcloud

Version:

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

13 lines (10 loc) 269 B
/* * index.js: Top-level include for the Azure Tables database module * * (C) Microsoft Open Technologies, Inc. * */ exports.Client = require('./client').Client; exports.createClient = function createClient(options) { return new exports.Client(options); };