mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-11 16:14:05 -08:00
83e6d56393
Signed-off-by: Tariq Ibrahim <tariq181290@gmail.com>
10 lines
131 B
Go
10 lines
131 B
Go
// +build go1.8
|
|
|
|
package swag
|
|
|
|
import "net/url"
|
|
|
|
func pathUnescape(path string) (string, error) {
|
|
return url.PathUnescape(path)
|
|
}
|