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

10 lines
153 B
Go

package router_http
import "net/http"
type LocationReader int
func (l LocationReader) read(request *http.Request) string {
return request.URL.Path
}