Codebase list golang-github-go-openapi-swag / 654fff31-c75c-41ee-8b90-54d374942d86/main post_go18.go
654fff31-c75c-41ee-8b90-54d374942d86/main

Tree @654fff31-c75c-41ee-8b90-54d374942d86/main (Download .tar.gz)

post_go18.go @654fff31-c75c-41ee-8b90-54d374942d86/mainraw · history · blame

1
2
3
4
5
6
7
8
9
// +build go1.8

package swag

import "net/url"

func pathUnescape(path string) (string, error) {
	return url.PathUnescape(path)
}