This commit is contained in:
2021-08-15 18:37:39 +02:00
parent ab82b64fa1
commit 6a412ee673
67 changed files with 621 additions and 463 deletions

View File

@@ -0,0 +1,8 @@
import { Router } from 'express'
const rootController = require('../controllers/rootController')
const router = Router()
router.get('/', rootController.root_get)
module.exports = router