bind-service.js 243 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 /** * 注册数据接口 * * @author JiangFeng<jeff.jiang@yoho.cn> * @date 2016/06/21 */ 'use strict'; const BindApi = require('./bind-api'); module.exports = class extends BindApi { constructor(ctx) { super(ctx); } };