christmas/middlewares/locals.js

9 lines
168 B
JavaScript
Raw Normal View History

2020-11-08 13:54:08 -08:00
const config = require('../config')
2021-12-03 08:13:43 -08:00
2018-11-20 11:19:58 -08:00
module.exports = (req, res, next) => {
2020-11-08 13:54:08 -08:00
res.locals.config = config
res.locals.req = req
2021-12-03 08:13:43 -08:00
res.locals.lang = _CC.lang
2020-11-08 13:54:08 -08:00
next()
}