mirror of
https://github.com/status-im/codimd.git
synced 2025-01-12 22:24:08 +00:00
b4ec353fcd
Signed-off-by: BoHong Li <raccoon@hackmd.io>
11 lines
168 B
JavaScript
11 lines
168 B
JavaScript
'use strict'
|
|
|
|
const config = require('../config')
|
|
|
|
module.exports = function (req, res, next) {
|
|
res.set({
|
|
'CodiMD-Version': config.version
|
|
})
|
|
return next()
|
|
}
|