5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-01-28 07:04:40 +00:00

11 lines
169 B
Go
Raw Normal View History

2017-12-07 23:00:56 +01:00
// +build go1.8
package echo
import "net/url"
// PathUnescape is wraps `url.PathUnescape`
func PathUnescape(s string) (string, error) {
return url.PathUnescape(s)
}