Skip to content

Instantly share code, notes, and snippets.

@IvsonEmidio
Created June 28, 2022 18:42
Show Gist options
  • Save IvsonEmidio/1fecfa780b4129c9b368d570c9c4b7e4 to your computer and use it in GitHub Desktop.
Save IvsonEmidio/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