mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 14:30:26 +00:00
11 lines
169 B
Go
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)
|
||
|
}
|