UNPKG

@kwalox/create-node-app

Version:

CLI command to bootstrap Node project

7 lines (5 loc) 196 B
import { Express } from "express" import { getAllUsersHandler } from "./User/user.controller" export default function routes(app: Express) { app.get("/api/v1/users", getAllUsersHandler) }