diff options
author | Michael Muré <batolettre@gmail.com> | 2018-07-19 15:27:55 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-07-19 15:27:55 +0200 |
commit | f42cf79443fd08f61385761f86ddeb0f914257e6 (patch) | |
tree | b873953785a236342ecf9829e5495add0665d5a2 /graphql/resolvers.go | |
parent | 2bbb145801eb3643b4792401a8e891f505fe573e (diff) | |
download | git-bug-f42cf79443fd08f61385761f86ddeb0f914257e6.tar.gz |
start of a graphql schema+types
Diffstat (limited to 'graphql/resolvers.go')
-rw-r--r-- | graphql/resolvers.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/graphql/resolvers.go b/graphql/resolvers.go new file mode 100644 index 00000000..ef20d0f2 --- /dev/null +++ b/graphql/resolvers.go @@ -0,0 +1,7 @@ +package graphql + +import "github.com/graphql-go/graphql" + +func resolveBug(p graphql.ResolveParams) (interface{}, error) { + return "world", nil +} |