go-gitlab-client
go-gitlab-client copied to clipboard
Project API namespace escaping
https://github.com/plouc/go-gitlab-client/blob/master/projects.go#L74
It says project path (namespace + project name) has to be passed with delimiter escaped (/
=> %2F
), but we can do that automatically with QueryEscape
from net/url
.
Can make a PR.