mirror of
https://github.com/filiprojek/nork.git
synced 2025-02-20 01:22:58 +01:00
11 lines
165 B
TypeScript
11 lines
165 B
TypeScript
import { Request, Response } from 'express'
|
|
|
|
const root_get = (req: Request, res: Response) => {
|
|
res.render('home')
|
|
return true
|
|
}
|
|
|
|
module.exports = {
|
|
root_get,
|
|
}
|