mirror of
https://github.com/cloudnativelabs/kube-router.git
synced 2025-10-13 19:01:05 +02:00
* vendor changes from dep init * add Gopkg.lock and Gopkg.toml * delete glide.lock and glide.yaml * build gobgp from vendor
10 lines
133 B
Go
10 lines
133 B
Go
// +build !go1.8
|
|
|
|
package swag
|
|
|
|
import "net/url"
|
|
|
|
func pathUnescape(path string) (string, error) {
|
|
return url.QueryUnescape(path)
|
|
}
|