mirror of
https://github.com/filiprojek/nork.git
synced 2025-02-20 01:22:58 +01:00
9 lines
189 B
TypeScript
9 lines
189 B
TypeScript
import { Router } from 'express'
|
|
const rootController = require('../controllers/rootController')
|
|
|
|
const router = Router()
|
|
|
|
router.get('/', rootController.root_get)
|
|
|
|
module.exports = router
|