ads.js 236 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 /** * 广告联盟接口 * Created by TaoHuang on 2016/11/8. */ 'use strict'; const service = require('../models/ads-service'); const jump = (req, res, next) => { service.jump().catch(next); }; module.exports = { jump };