diff options
Diffstat (limited to 'cache/repo_cache_common.go')
-rw-r--r-- | cache/repo_cache_common.go | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cache/repo_cache_common.go b/cache/repo_cache_common.go index 1e330a4a..95e2f7bb 100644 --- a/cache/repo_cache_common.go +++ b/cache/repo_cache_common.go @@ -20,6 +20,16 @@ func (c *RepoCache) LocalConfig() repository.Config { return c.repo.LocalConfig() } +// GlobalConfig give access to the global scoped configuration +func (c *RepoCache) GlobalConfig() repository.Config { + return c.repo.GlobalConfig() +} + +// AnyConfig give access to a merged local/global configuration +func (c *RepoCache) AnyConfig() repository.ConfigRead { + return c.repo.AnyConfig() +} + func (c *RepoCache) Keyring() repository.Keyring { return c.repo.Keyring() } |