filer/src/providers/index.js

9 lines
170 B
JavaScript

const IndexedDB = require('./indexeddb.js');
const Memory = require('./memory.js');
module.exports = {
IndexedDB: IndexedDB,
Default: IndexedDB,
Memory: Memory
};