diff options
Diffstat (limited to 'vendor/github.com/labstack/echo/util_go17.go')
-rw-r--r-- | vendor/github.com/labstack/echo/util_go17.go | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/vendor/github.com/labstack/echo/util_go17.go b/vendor/github.com/labstack/echo/util_go17.go deleted file mode 100644 index eaae17e3..00000000 --- a/vendor/github.com/labstack/echo/util_go17.go +++ /dev/null @@ -1,12 +0,0 @@ -// +build go1.7, !go1.8 - -package echo - -import ( - "net/url" -) - -// PathUnescape is wraps `url.QueryUnescape` -func PathUnescape(s string) (string, error) { - return url.QueryUnescape(s) -} |