Files
freeplanet/src/globalroutines/index.js

7 lines
206 B
JavaScript
Raw Normal View History

2019-02-02 20:13:06 +01:00
import indexdb from './indexdb'
2019-02-02 21:16:49 +01:00
export default async (context, cmd, table, data, id = '') => {
console.log('globalroutines', cmd, table, data, id)
return await indexdb(context, cmd, table, data, id)
2019-02-02 20:13:06 +01:00
}