Skip to content

Instantly share code, notes, and snippets.

@gabrielbmoro
Created September 6, 2022 20:59
Show Gist options
  • Save gabrielbmoro/602f3037b55dbaed174508c01828a95f to your computer and use it in GitHub Desktop.
Save gabrielbmoro/602f3037b55dbaed174508c01828a95f to your computer and use it in GitHub Desktop.
An API Project - Gists Part 3
import { container } from "tsyringe";
...
function setup() {
container.registerSingleton<ISisOrgRepository>(
"ISisOrgRepository",
FirestoreDataSource
);
}
...
app.listen(port, () => {
setup();
console.log("Server is running...");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment