1d14e30383
* added koofr client SDK dep for koofr backend
14 lines
179 B
Go
14 lines
179 B
Go
package httpclient
|
|
|
|
import (
|
|
"net/url"
|
|
"strings"
|
|
)
|
|
|
|
func EscapePath(path string) string {
|
|
u := url.URL{
|
|
Path: path,
|
|
}
|
|
|
|
return strings.Replace(u.String(), "+", "%2b", -1)
|
|
}
|