UNPKG

ts-express-kit

Version:

A TypeScript starter kit for building Express applications with best practices.

8 lines (5 loc) 201 B
import express from "express"; import TestController from "./test.controller"; const router = express.Router(); router.get("/test", TestController.getTests); export const TestRoutes = router;