Archived
2
This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
definma-api/src/routes/root.ts

10 lines
180 B
TypeScript
Raw Normal View History

2020-01-14 13:25:13 +01:00
import express from 'express';
const router = express.Router();
router.get('/', (req, res) => {
2020-04-22 17:38:24 +02:00
res.json({status: 'API server up and running!'});
2020-01-14 13:25:13 +01:00
});
module.exports = router;