Files
freeplanet/src/globalroutines/index.js

7 lines
196 B
JavaScript
Raw Normal View History

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