This is an automated email from the ASF dual-hosted git repository.
liuhongyu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shenyu-dashboard.git
The following commit(s) were added to refs/heads/master by this push:
new 475f7944 [type:improve] support plugin handle (#504)
475f7944 is described below
commit 475f7944568c67c0d07626612c9f4f67e37f0f54
Author: VampireAchao <[email protected]>
AuthorDate: Tue Nov 19 22:08:14 2024 +0800
[type:improve] support plugin handle (#504)
---
src/routes/Plugin/PluginRuleHandle/index.js | 2 --
1 file changed, 2 deletions(-)
diff --git a/src/routes/Plugin/PluginRuleHandle/index.js
b/src/routes/Plugin/PluginRuleHandle/index.js
index d53936d8..2bce6db6 100644
--- a/src/routes/Plugin/PluginRuleHandle/index.js
+++ b/src/routes/Plugin/PluginRuleHandle/index.js
@@ -15,14 +15,12 @@
* limitations under the License.
*/
-import RequestRuleHandle from "./RequestRuleHandle";
import HystrixRuleHandle from "./HystrixRuleHandle";
import ParamPluginRuleHandle from "./ParamPluginRuleHandle";
import ResponseRuleHandle from "./ResponseRuleHandle";
import GeneralContextRuleHandle from "./GeneralContextRuleHandle";
export default {
- request: RequestRuleHandle,
generalContext: GeneralContextRuleHandle,
modifyResponse: ResponseRuleHandle,
hystrix: HystrixRuleHandle,