diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-19 17:42:13 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2016-08-19 17:42:13 +0200 |
commit | 1d56b98d9b02e20f7feea542c75746eab34fad63 (patch) | |
tree | 006e8c3ac5e40353032109a5259bb28c37751996 /clients/common/common.go | |
parent | b1d116c59f7656dc8d5ff7294ba8f8a82c51bfd1 (diff) | |
download | go-git-1d56b98d9b02e20f7feea542c75746eab34fad63.tar.gz |
Remote.Fetch base on RefSpec, improvement of the responsabilities separation
Diffstat (limited to 'clients/common/common.go')
-rw-r--r-- | clients/common/common.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clients/common/common.go b/clients/common/common.go index 9099016..d128f3f 100644 --- a/clients/common/common.go +++ b/clients/common/common.go @@ -28,6 +28,7 @@ type GitUploadPackService interface { ConnectWithAuth(AuthMethod) error Info() (*GitUploadPackInfo, error) Fetch(*GitUploadPackRequest) (io.ReadCloser, error) + Disconnect() error } type AuthMethod interface { |