Files
apinto/router-k/reader.go
黄孟柱 a10d4b53a0 init
2021-07-20 11:11:39 +08:00

8 lines
104 B
Go

package router
import "net/http"
type IReader interface {
Reader(req *http.Request) (string, bool)
}