UNPKG

bot18

Version:

A high-frequency cryptocurrency trading bot by Zenbot creator @carlos8f

9 lines 295 B
module.exports = function container (get, set) { return function createJSONCollection (name, options) { return function mountJSONCollection (cb) { var coll = get('vendor.sosa_json')(get('conf.db.json'))(name, options) set('@db.' + name, coll) setImmediate(cb) } } }