shop.js 180 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 'use strict'; const index = (req, res, next) => { res.json({ code: 200, data: [], message: 'hello, world' }); }; module.exports = { index };