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 /graphql/resolvers/operations.go | |
parent | df144e727a858ed07e3c9328d91efe052c4781e1 (diff) | |
download | git-bug-4c850b598939536b2e09ed520e427e94d0026211.tar.gz |
cleanup go imports
Diffstat (limited to 'graphql/resolvers/operations.go')
-rw-r--r-- | graphql/resolvers/operations.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/graphql/resolvers/operations.go b/graphql/resolvers/operations.go index 086bc249..a0058a42 100644 --- a/graphql/resolvers/operations.go +++ b/graphql/resolvers/operations.go @@ -3,10 +3,11 @@ package resolvers import ( "context" "fmt" + "time" + "github.com/MichaelMure/git-bug/bug" "github.com/MichaelMure/git-bug/bug/operations" "github.com/MichaelMure/git-bug/graphql/models" - "time" ) type addCommentOperationResolver struct{} |