loopback-component-storage/index.js

14 lines
472 B
JavaScript
Raw Normal View History

2016-05-03 23:18:18 +00:00
// Copyright IBM Corp. 2014,2016. All Rights Reserved.
// Node module: loopback-component-storage
// This file is licensed under the Artistic License 2.0.
// License text available at https://opensource.org/licenses/Artistic-2.0
2016-10-18 22:48:59 +00:00
'use strict';
2016-05-03 23:18:18 +00:00
2016-07-26 18:13:30 +00:00
var SG = require('strong-globalize');
SG.SetRootDir(__dirname);
2014-01-10 19:34:37 +00:00
var StorageConnector = require('./lib/storage-connector');
2014-01-14 18:39:02 +00:00
StorageConnector.StorageService = require('./lib/storage-service');
2014-01-10 19:34:37 +00:00
module.exports = StorageConnector;