From 041e846a4c6749784060c4133e0c63c3342bdfdc Mon Sep 17 00:00:00 2001 From: Yamashou <1230124fw@gmail.com> Date: Wed, 24 Apr 2024 03:34:07 +0900 Subject: [PATCH] fmt --- graphqljson/graphql.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/graphqljson/graphql.go b/graphqljson/graphql.go index 281e1a8..7551111 100644 --- a/graphqljson/graphql.go +++ b/graphqljson/graphql.go @@ -31,10 +31,11 @@ import ( "encoding/json" "errors" "fmt" - "github.com/99designs/gqlgen/graphql" "io" "reflect" "strings" + + "github.com/99designs/gqlgen/graphql" ) // Reference: https://blog.gopheracademy.com/advent-2017/custom-json-unmarshaler-for-graphql-client/