UNPKG

fatty-cli-js

Version:

Fatty client for node.js

14 lines (10 loc) 253 B
var dbClient = require('./db'); var cacheClient = require('./cache'); // 数据库客户端 exports.dbClient = function(opts) { return new dbClient(opts); } // 缓存客户端 exports.cacheClient = function(opts) { return new cacheClient(opts); }