UNPKG

@sansitech/pkgcloud

Version:

A provider 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); };