Interceptor (拦截器)
| 17 | // Interceptor |
| 18 | // (拦截器) |
| 19 | type IInterceptor interface { |
| 20 | Intercept(IChain) IcResp |
| 21 | // The interception method of the interceptor (defined by the developer) |
| 22 | // (拦截器的拦截处理方法,由开发者定义) |
| 23 | } |
| 24 | |
| 25 | // Responsibility chain |
| 26 | // (责任链) |
no outgoing calls
no test coverage detected