mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
* move mattes migrations to migratex * changes format of migrations to migratex format * updates test runner to use new interface (double checked this with printlns, the tests go fully down and then up, and work on pg/mysql) * remove mattes/migrate * update tests from deps * update readme * fix other file extensions
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)
|
|
}
|