2
1
mirror of https://github.com/therootcompany/serviceman.git synced 2025-04-20 06:10:48 +00:00
2019-07-01 02:44:54 -06:00

11 lines
169 B
Go

// +build go1.8
package echo
import "net/url"
// PathUnescape is wraps `url.PathUnescape`
func PathUnescape(s string) (string, error) {
return url.PathUnescape(s)
}