From 0514edad1a6ee06902841e0c903fc2a2119b7e95 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Thu, 23 Aug 2018 21:24:57 +0200 Subject: cache: maintain, write and load from disk bug excerpts --- graphql/resolvers/query.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'graphql/resolvers/query.go') diff --git a/graphql/resolvers/query.go b/graphql/resolvers/query.go index 4154964f..0e7f3a6f 100644 --- a/graphql/resolvers/query.go +++ b/graphql/resolvers/query.go @@ -8,7 +8,7 @@ import ( ) type rootQueryResolver struct { - cache cache.Cacher + cache *cache.RootCache } func (r rootQueryResolver) DefaultRepository(ctx context.Context) (*models.Repository, error) { -- cgit