mirror of
https://github.com/harness/drone.git
synced 2025-05-11 06:30:06 +08:00
11 lines
161 B
Go
11 lines
161 B
Go
package gogitlab
|
|
|
|
import (
|
|
"net/url"
|
|
"strings"
|
|
)
|
|
|
|
func encodeParameter(value string) string {
|
|
return strings.Replace(url.QueryEscape(value), "/", "%2F", 0)
|
|
}
|