Hook method before processing conn business(在处理conn业务之前的钩子方法)
(request IRequest)
| 12 | type IRouter interface { |
| 13 | PreHandle(request IRequest) //Hook method before processing conn business(在处理conn业务之前的钩子方法) |
| 14 | Handle(request IRequest) //Method for processing conn business(处理conn业务的方法) |
| 15 | PostHandle(request IRequest) //Hook method after processing conn business(处理conn业务之后的钩子方法) |
| 16 | } |
| 17 |
no outgoing calls
no test coverage detected