mirror of
https://github.com/status-im/codimd.git
synced 2025-01-29 19:35:03 +00:00
68439de268
Signed-off-by: Raccoon <raccoon@hackmd.io>
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()
|
|
}
|