feat(auth): add per-feature InversifyJS container with constructor-injected service

This commit is contained in:
2026-05-05 00:40:09 +02:00
parent b8cfe0e1f2
commit 2ad6b21f17
4 changed files with 75 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
export const AUTH_SYMBOLS = {
IUsersRepository: Symbol.for("auth:IUsersRepository"),
IAuthenticationService: Symbol.for("auth:IAuthenticationService"),
} as const;