Files
apinto/router-http/reader-location.go

10 lines
153 B
Go
Raw Normal View History

2021-07-20 10:46:32 +08:00
package router_http
import "net/http"
type LocationReader int
func (l LocationReader) read(request *http.Request) string {
return request.URL.Path
}