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 /config/config.go | |
parent | b1d116c59f7656dc8d5ff7294ba8f8a82c51bfd1 (diff) | |
download | go-git-1d56b98d9b02e20f7feea542c75746eab34fad63.tar.gz |
Remote.Fetch base on RefSpec, improvement of the responsabilities separation
Diffstat (limited to 'config/config.go')
-rw-r--r-- | config/config.go | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/config/config.go b/config/config.go new file mode 100644 index 0000000..88172f4 --- /dev/null +++ b/config/config.go @@ -0,0 +1,13 @@ +package config + +type Config interface { + Remote(name string) *RemoteConfig + Remotes() []*RemoteConfig + SetRemote(*RemoteConfig) +} + +type RemoteConfig struct { + Name string + URL string + Fetch RefSpec +} |