This commit is contained in:
Primakov Alexandr Alexandrovich
2024-11-04 18:47:17 +03:00
parent 10dc3e5ffe
commit ef35a8aa6c
12 changed files with 3819 additions and 0 deletions

8
server/routes/index.js Normal file
View File

@@ -0,0 +1,8 @@
const router = require('express').Router();
const pkg = require('../../package.json')
router.get('/healthcheck', (req, res) => {
res.send({ ok: true, version: pkg.version })
})
module.exports = router;