diff options
author | Michael Muré <batolettre@gmail.com> | 2019-02-24 17:40:52 +0100 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2019-03-01 22:52:53 +0100 |
commit | 475b7b4c490bc3729772932f2d7bbcabb8f781a7 (patch) | |
tree | 345d35ce5cb563a470a06c87c13a0ce78ea576cd /graphql | |
parent | 2fd5f71b592eeebd0c0c4c770a7dac88d7eae80a (diff) | |
download | git-bug-475b7b4c490bc3729772932f2d7bbcabb8f781a7.tar.gz |
a round of cleanup
Diffstat (limited to 'graphql')
-rw-r--r-- | graphql/handler.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphql/handler.go b/graphql/handler.go index 1e8498c8..aadcf4cb 100644 --- a/graphql/handler.go +++ b/graphql/handler.go @@ -4,11 +4,12 @@ package graphql import ( + "net/http" + "github.com/99designs/gqlgen/handler" "github.com/MichaelMure/git-bug/graphql/graph" "github.com/MichaelMure/git-bug/graphql/resolvers" "github.com/MichaelMure/git-bug/repository" - "net/http" ) // Handler is the root GraphQL http handler |