mirror of
https://github.com/42wim/matterbridge
synced 2024-11-09 07:10:25 +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)
|
|
}
|