diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-14 12:40:31 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-14 12:41:59 +0200 |
commit | b478cd1bcb4756b20f7f4b15fcf81f23e1a60a02 (patch) | |
tree | 8ce232dcab3dd00708f8ba66c334472457e5980d /commands/webui.go | |
parent | a3fc9abb921f5ce7084d6ab7473442d0b72b1d78 (diff) | |
download | git-bug-b478cd1bcb4756b20f7f4b15fcf81f23e1a60a02.tar.gz |
graphql: update gqlgen to 0.5.1
fix #6
Diffstat (limited to 'commands/webui.go')
-rw-r--r-- | commands/webui.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/webui.go b/commands/webui.go index d64bca53..d44bebba 100644 --- a/commands/webui.go +++ b/commands/webui.go @@ -12,6 +12,7 @@ import ( "os/signal" "time" + "github.com/99designs/gqlgen/handler" "github.com/MichaelMure/git-bug/graphql" "github.com/MichaelMure/git-bug/repository" "github.com/MichaelMure/git-bug/util/git" @@ -20,7 +21,6 @@ import ( "github.com/phayes/freeport" "github.com/skratchdot/open-golang/open" "github.com/spf13/cobra" - "github.com/vektah/gqlgen/handler" ) var port int |