diff options
author | Michael Muré <batolettre@gmail.com> | 2018-08-13 15:28:16 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-08-13 15:28:47 +0200 |
commit | df144e727a858ed07e3c9328d91efe052c4781e1 (patch) | |
tree | bfbfeea70f97ab3d4274c8e5add2c3aeeac1423b /graphql/relay.go | |
parent | f2f779c5a8b4efe67317bbffe110a9880c1f529a (diff) | |
download | git-bug-df144e727a858ed07e3c9328d91efe052c4781e1.tar.gz |
fix some linting trouble
Diffstat (limited to 'graphql/relay.go')
-rw-r--r-- | graphql/relay.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/graphql/relay.go b/graphql/relay.go index a73a38ef..036ab54e 100644 --- a/graphql/relay.go +++ b/graphql/relay.go @@ -5,7 +5,6 @@ import ( "strings" ) - type ResolvedGlobalID struct { Type string `json:"type"` ID string `json:"id"` @@ -36,4 +35,3 @@ func FromGlobalID(globalID string) *ResolvedGlobalID { ID: tokens[1], } } - |