/**
 * 注册数据接口
 *
 * @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);
    }
};