diff options
Diffstat (limited to 'graphql/resolvers/query.go')
-rw-r--r-- | graphql/resolvers/query.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/graphql/resolvers/query.go b/graphql/resolvers/query.go index b5763b72..80b5a896 100644 --- a/graphql/resolvers/query.go +++ b/graphql/resolvers/query.go @@ -4,9 +4,12 @@ import ( "context" "github.com/MichaelMure/git-bug/cache" + "github.com/MichaelMure/git-bug/graphql/graph" "github.com/MichaelMure/git-bug/graphql/models" ) +var _ graph.QueryResolver = &rootQueryResolver{} + type rootQueryResolver struct { cache *cache.MultiRepoCache } |