keeweb/app/scripts/storage/index.js

10 lines
179 B
JavaScript
Raw Normal View History

2015-12-02 21:39:40 +01:00
'use strict';
var Storage = {
file: require('./storage-file'),
dropbox: require('./storage-dropbox'),
cache: require('./storage-cache')
};
module.exports = Storage;