diff options
author | Michael Muré <batolettre@gmail.com> | 2018-08-13 18:32:11 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-08-13 18:39:19 +0200 |
commit | 4c850b598939536b2e09ed520e427e94d0026211 (patch) | |
tree | 99c08f0e853cca023bcf5e6044964c630ae52299 /commands/webui.go | |
parent | df144e727a858ed07e3c9328d91efe052c4781e1 (diff) | |
download | git-bug-4c850b598939536b2e09ed520e427e94d0026211.tar.gz |
cleanup go imports
Diffstat (limited to 'commands/webui.go')
-rw-r--r-- | commands/webui.go | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/commands/webui.go b/commands/webui.go index 0389d68b..9ebced09 100644 --- a/commands/webui.go +++ b/commands/webui.go @@ -4,6 +4,11 @@ import ( "bytes" "encoding/json" "fmt" + "io/ioutil" + "log" + "net/http" + "time" + "github.com/MichaelMure/git-bug/graphql" "github.com/MichaelMure/git-bug/repository" "github.com/MichaelMure/git-bug/util" @@ -13,10 +18,6 @@ import ( "github.com/skratchdot/open-golang/open" "github.com/spf13/cobra" "github.com/vektah/gqlgen/handler" - "io/ioutil" - "log" - "net/http" - "time" ) var port int |