Files
apinto/router-k/reader.go

8 lines
104 B
Go
Raw Normal View History

2021-07-20 10:46:32 +08:00
package router
import "net/http"
type IReader interface {
Reader(req *http.Request) (string, bool)
}