import "reflect-metadata"; import { Container } from "inversify"; import { AuthModule } from "./module"; export const authContainer = new Container({ defaultScope: "Singleton" }); authContainer.load(AuthModule);