Files
freeplanet/src/globalroutines/index.js
Paolo Arena fb099322d4 - fix: check if need refresh.. part 1
- keytab in todo...
2019-02-04 04:17:50 +01:00

8 lines
265 B
JavaScript

import indexdb from './indexdb'
export default async (context, cmd, table, data = null, id = '') => {
const descr = data !== null ? data.descr : ''
// console.log('globalroutines', cmd, table, descr, id)
return await indexdb(context, cmd, table, data, id)
}