mirror of
https://github.com/status-im/codimd.git
synced 2025-01-30 14:05:09 +00:00
10 lines
209 B
TypeScript
10 lines
209 B
TypeScript
|
import * as config from "../config";
|
||
|
import {Request, Response} from "express";
|
||
|
|
||
|
export = function (req: Request, res: Response, next) {
|
||
|
res.set({
|
||
|
'CodiMD-Version': config.version
|
||
|
})
|
||
|
return next()
|
||
|
}
|