ddstats-server/routes/routes.js

13 lines
247 B
JavaScript
Raw Normal View History

2021-10-30 21:39:21 +02:00
import { Router } from 'express'
import routex from '../libs/routex.js'
2021-10-30 21:39:21 +02:00
const routes = Router()
routes.get(
'/',
(req, res) => {
routex(req, res)('pages/landing.njk', null, { currentSection: null })
}
2021-10-30 21:39:21 +02:00
)
export default routes