Skip to content

Instantly share code, notes, and snippets.

@radzserg
Created October 12, 2021 16:44
Show Gist options
  • Save radzserg/e49fada80d992f414374eefa1d7074ac to your computer and use it in GitHub Desktop.
Save radzserg/e49fada80d992f414374eefa1d7074ac to your computer and use it in GitHub Desktop.
export default function configureRouter(app: core.Express, diContainer: IDIContainer) {
const usersController = diContainer.get(UsersController);
app.route('/users')
.get(usersController.actionIndex.bind(usersController))
.post(usersController.actionCreate.bind(usersController));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment