add sberhubproject

This commit is contained in:
2024-12-28 11:02:11 +03:00
parent 61c847b58c
commit 571c43c33c
6 changed files with 201 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
const router = require('express').Router();
module.exports = router;
const data = require('./data/interest.json');
router.get('/', (req, res) => {
//res.status(500).send({
// message: 'Internal server error'
//});
res.json(data)
});