UNPKG

expresss-ts

Version:

CLI to create an Express TypeScript starter project

10 lines (6 loc) 228 B
import express from "express"; import { getExample, postExample } from "../controllers/example.controllers"; const router = express.Router(); router.get("/", getExample); router.post("/", postExample); export default router;