feat(blog): add per-feature InversifyJS container (symbols, module, container)

This commit is contained in:
2026-05-04 22:14:56 +02:00
parent 41d7883e7a
commit c00283506c
5 changed files with 65 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
import "reflect-metadata";
import { Container } from "inversify";
import { BlogModule } from "./module";
export const blogContainer = new Container({ defaultScope: "Singleton" });
blogContainer.load(BlogModule);