diff options
author | Michael Muré <michael.mure@consensys.net> | 2019-03-31 21:44:14 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2019-04-01 14:03:13 +0200 |
commit | 15c258cdc4ba37820362a44dfc2636ed1ff92b4c (patch) | |
tree | 0790e36bf4846b12b367f12670540eec6ee023f3 /graphql/resolvers/root.go | |
parent | e028b895aa21553937d732044b7bb0a15c5276f6 (diff) | |
download | git-bug-15c258cdc4ba37820362a44dfc2636ed1ff92b4c.tar.gz |
graphql: expose allIdentities, identities and userIdentity in the repo
Diffstat (limited to 'graphql/resolvers/root.go')
-rw-r--r-- | graphql/resolvers/root.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/graphql/resolvers/root.go b/graphql/resolvers/root.go index cfdfe346..7414a097 100644 --- a/graphql/resolvers/root.go +++ b/graphql/resolvers/root.go @@ -6,6 +6,8 @@ import ( "github.com/MichaelMure/git-bug/graphql/graph" ) +var _ graph.ResolverRoot = &RootResolver{} + type RootResolver struct { cache.MultiRepoCache } |