aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/models/models.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-09-02 15:45:14 +0200
committerMichael Muré <batolettre@gmail.com>2018-09-02 15:45:14 +0200
commit90a45b4c0979dd744aa5a28c84ececf243f027d2 (patch)
treebc2bea4bd1452b00685a7ad967027f78e626eba7 /graphql/models/models.go
parent6ff02ed84254275f2d19569a1a5f14efc1d47f31 (diff)
downloadgit-bug-90a45b4c0979dd744aa5a28c84ececf243f027d2.tar.gz
cache: rename RootCache into MultiRepoCache
Underline the fact that it's fine to use RepoCache alone
Diffstat (limited to 'graphql/models/models.go')
-rw-r--r--graphql/models/models.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphql/models/models.go b/graphql/models/models.go
index dfe3a29f..63d9c1fe 100644
--- a/graphql/models/models.go
+++ b/graphql/models/models.go
@@ -12,11 +12,11 @@ type ConnectionInput struct {
}
type Repository struct {
- Cache *cache.RootCache
+ Cache *cache.MultiRepoCache
Repo *cache.RepoCache
}
type RepositoryMutation struct {
- Cache *cache.RootCache
+ Cache *cache.MultiRepoCache
Repo *cache.RepoCache
}