diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-02 15:45:14 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-02 15:45:14 +0200 |
commit | 90a45b4c0979dd744aa5a28c84ececf243f027d2 (patch) | |
tree | bc2bea4bd1452b00685a7ad967027f78e626eba7 /graphql/resolvers/mutation.go | |
parent | 6ff02ed84254275f2d19569a1a5f14efc1d47f31 (diff) | |
download | git-bug-90a45b4c0979dd744aa5a28c84ececf243f027d2.tar.gz git-bug-90a45b4c0979dd744aa5a28c84ececf243f027d2.zip |
cache: rename RootCache into MultiRepoCache
Underline the fact that it's fine to use RepoCache alone
Diffstat (limited to 'graphql/resolvers/mutation.go')
-rw-r--r-- | graphql/resolvers/mutation.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphql/resolvers/mutation.go b/graphql/resolvers/mutation.go index 674c1775..7cc98aac 100644 --- a/graphql/resolvers/mutation.go +++ b/graphql/resolvers/mutation.go @@ -9,7 +9,7 @@ import ( ) type mutationResolver struct { - cache *cache.RootCache + cache *cache.MultiRepoCache } func (r mutationResolver) getRepo(repoRef *string) (*cache.RepoCache, error) { |