Skip to content

Instantly share code, notes, and snippets.

@just-a-echo
Created June 28, 2022 18:42
Show Gist options
  • Save just-a-echo/1fecfa780b4129c9b368d570c9c4b7e4 to your computer and use it in GitHub Desktop.
Save just-a-echo/1fecfa780b4129c9b368d570c9c4b7e4 to your computer and use it in GitHub Desktop.
import { Application } from "express";
import { UserController } from "../controllers/UserController";
export default function userRoutes(app: Application) {
const controller = new UserController();
app.post(
"/user",
controller.create.bind(controller)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment