You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
434 B
11 lines
434 B
package ziface
|
|
|
|
/*
|
|
路由接口, 这里面路由是 使用框架者给该链接自定的 处理业务方法
|
|
路由里的IRequest 则包含用该链接的链接信息和该链接的请求数据信息
|
|
*/
|
|
type IRouter interface {
|
|
PreHandle(request IRequest) //在处理conn业务之前的钩子方法
|
|
Handle(request IRequest) //处理conn业务的方法
|
|
PostHandle(request IRequest) //处理conn业务之后的钩子方法
|
|
}
|