From e81e7b8e09e36976ea01d8374e579c9d1aa868e7 Mon Sep 17 00:00:00 2001 From: Shinwoo PARK Date: Tue, 18 Mar 2025 21:22:05 +0900 Subject: [PATCH] feat: add LoggedGuard and LoggedInterceptor to exports This commit introduces LoggedGuard and LoggedInterceptor to the list of exported modules in the index.ts file, enhancing the logging capabilities of the application by making these additional decorators available for use. --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/index.ts b/src/index.ts index 8537e8e..08aad04 100644 --- a/src/index.ts +++ b/src/index.ts @@ -3,6 +3,8 @@ export { LoggedFunction, LoggedController, LoggedInjectable, + LoggedGuard, + LoggedInterceptor, } from "./logged"; export { ScopedLogger } from "./logger"; export {