mirror of
https://github.com/filiprojek/nork.git
synced 2025-02-20 01:22:58 +01:00
9 lines
170 B
TypeScript
9 lines
170 B
TypeScript
import { Router } from "express";
|
|
const sayHiMiddleware = require("./sayHiMiddleware");
|
|
|
|
const router = Router();
|
|
|
|
router.use(sayHiMiddleware);
|
|
|
|
module.exports = router;
|