(ctx *common.Context)
| 63 | } |
| 64 | |
| 65 | func (h *API) accessGlobalFlow(ctx *common.Context) { |
| 66 | // 全局插件不中断 |
| 67 | for _, handler := range h.pluginAccessGlobal { |
| 68 | _, _ = handler.Execute(ctx) |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | func (h *API) proxyFlow(ctx *common.Context) bool { |
| 73 | for _, handler := range h.pluginProxies { |