mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-27 20:38:41 +08:00
9 lines
156 B
Go
9 lines
156 B
Go
|
package internal
|
||
|
|
||
|
import "net/http"
|
||
|
|
||
|
type (
|
||
|
Interceptor func(r *http.Request) (*http.Request, ResponseHandler)
|
||
|
ResponseHandler func(*http.Response)
|
||
|
)
|