diff options
author | Michael Muré <batolettre@gmail.com> | 2019-11-10 18:30:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-10 18:30:46 +0100 |
commit | 802b61e254c40042028d5f08bbed0968e78da265 (patch) | |
tree | 1672ea2925533bee62947f6e0a7027b1bff1cb7e /repository/repo.go | |
parent | 350ab761d7b07df9bd49123130fe9807ea9a3d7e (diff) | |
parent | e0b15ee7644c20533156850e0be5a07597967450 (diff) | |
download | git-bug-802b61e254c40042028d5f08bbed0968e78da265.tar.gz |
Merge pull request #219 from MichaelMure/global-config
Global config, global bridge token
Diffstat (limited to 'repository/repo.go')
-rw-r--r-- | repository/repo.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/repository/repo.go b/repository/repo.go index 7d655bde..e8c67a5e 100644 --- a/repository/repo.go +++ b/repository/repo.go @@ -10,8 +10,10 @@ import ( "github.com/MichaelMure/git-bug/util/lamport" ) -var ErrNoConfigEntry = errors.New("no config entry for the given key") -var ErrMultipleConfigEntry = errors.New("multiple config entry for the given key") +var ( + ErrNoConfigEntry = errors.New("no config entry for the given key") + ErrMultipleConfigEntry = errors.New("multiple config entry for the given key") +) // RepoCommon represent the common function the we want all the repo to implement type RepoCommon interface { |