diff options
Diffstat (limited to 'clients/http/git_upload_pack.go')
-rw-r--r-- | clients/http/git_upload_pack.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clients/http/git_upload_pack.go b/clients/http/git_upload_pack.go index 2d38d42..4b06c72 100644 --- a/clients/http/git_upload_pack.go +++ b/clients/http/git_upload_pack.go @@ -18,7 +18,8 @@ type GitUploadPackService struct { auth HTTPAuthMethod } -func NewGitUploadPackService() *GitUploadPackService { +func NewGitUploadPackService(url string) *GitUploadPackService { + // url ignored return &GitUploadPackService{ Client: http.DefaultClient, } |