From 1d3cca8fad859ae54fb10c1700dda261e93055b3 Mon Sep 17 00:00:00 2001 From: akitaSummer Date: Mon, 26 Aug 2024 19:55:36 +0800 Subject: [PATCH] feat: export controller info util for get aop middleware (#233) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ##### Checklist - [ ] `npm test` passes - [ ] tests and/or benchmarks are included - [ ] documentation is changed or added - [ ] commit message follows commit guidelines ##### Affected core subsystem(s) ##### Description of change ## Summary by CodeRabbit - **New Features** - Enhanced module functionality by exporting the `ControllerInfoUtil`, making it accessible for use in other parts of the application. - **Documentation** - Updated module exports to clarify the availability of the `ControllerInfoUtil`. --- core/controller-decorator/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/controller-decorator/index.ts b/core/controller-decorator/index.ts index 7e8ac427..7947f378 100644 --- a/core/controller-decorator/index.ts +++ b/core/controller-decorator/index.ts @@ -12,3 +12,5 @@ export * from './src/decorator/http/Host'; export * from './src/builder/ControllerMetaBuilderFactory'; export * from './src/util/ControllerMetadataUtil'; export * from './src/util/HTTPPriorityUtil'; + +export { default as ControllerInfoUtil } from './src/util/ControllerInfoUtil';