diff options
Diffstat (limited to 'graphql/models')
-rw-r--r-- | graphql/models/models.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/graphql/models/models.go b/graphql/models/models.go index e55dfb3e..dfe3a29f 100644 --- a/graphql/models/models.go +++ b/graphql/models/models.go @@ -12,11 +12,11 @@ type ConnectionInput struct { } type Repository struct { - Cache cache.Cacher - Repo cache.RepoCacher + Cache *cache.RootCache + Repo *cache.RepoCache } type RepositoryMutation struct { - Cache cache.Cacher - Repo cache.RepoCacher + Cache *cache.RootCache + Repo *cache.RepoCache } |