From f12b317a6da7dfe1b56a4f939958463c7c111e17 Mon Sep 17 00:00:00 2001 From: Leslie Qi Wang Date: Mon, 1 Nov 2021 12:36:24 -0700 Subject: [PATCH] replace with fork repo package Signed-off-by: Leslie Qi Wang --- doc.go | 2 +- example/graphqldev/main.go | 2 +- graphql.go | 2 +- graphql_test.go | 2 +- ident/ident_test.go | 2 +- internal/jsonutil/benchmark_test.go | 4 ++-- internal/jsonutil/graphql_test.go | 4 ++-- query.go | 2 +- scalar_test.go | 2 +- 9 files changed, 11 insertions(+), 11 deletions(-) diff --git a/doc.go b/doc.go index 870e3d4..652e230 100644 --- a/doc.go +++ b/doc.go @@ -5,4 +5,4 @@ // That package is driving the feature development. // // For now, see README for more details. -package graphql // import "github.com/shurcooL/graphql" +package graphql // import "github.com/leslie-qiwa/graphql" diff --git a/example/graphqldev/main.go b/example/graphqldev/main.go index ffc8302..a3c71d1 100644 --- a/example/graphqldev/main.go +++ b/example/graphqldev/main.go @@ -17,7 +17,7 @@ import ( graphqlserver "github.com/graph-gophers/graphql-go" "github.com/graph-gophers/graphql-go/example/starwars" "github.com/graph-gophers/graphql-go/relay" - "github.com/shurcooL/graphql" + "github.com/leslie-qiwa/graphql" ) func main() { diff --git a/graphql.go b/graphql.go index 9bcbea5..17da484 100644 --- a/graphql.go +++ b/graphql.go @@ -8,7 +8,7 @@ import ( "io/ioutil" "net/http" - "github.com/shurcooL/graphql/internal/jsonutil" + "github.com/leslie-qiwa/graphql/internal/jsonutil" "golang.org/x/net/context/ctxhttp" ) diff --git a/graphql_test.go b/graphql_test.go index e09dcc9..c26881c 100644 --- a/graphql_test.go +++ b/graphql_test.go @@ -8,7 +8,7 @@ import ( "net/http/httptest" "testing" - "github.com/shurcooL/graphql" + "github.com/leslie-qiwa/graphql" ) func TestClient_Query_partialDataWithErrorResponse(t *testing.T) { diff --git a/ident/ident_test.go b/ident/ident_test.go index 9ee1b47..4857043 100644 --- a/ident/ident_test.go +++ b/ident/ident_test.go @@ -5,7 +5,7 @@ import ( "reflect" "testing" - "github.com/shurcooL/graphql/ident" + "github.com/leslie-qiwa/graphql/ident" ) func Example_lowerCamelCaseToMixedCaps() { diff --git a/internal/jsonutil/benchmark_test.go b/internal/jsonutil/benchmark_test.go index f8788b1..89beddc 100644 --- a/internal/jsonutil/benchmark_test.go +++ b/internal/jsonutil/benchmark_test.go @@ -8,8 +8,8 @@ import ( "testing" "time" - "github.com/shurcooL/graphql" - "github.com/shurcooL/graphql/internal/jsonutil" + "github.com/leslie-qiwa/graphql" + "github.com/leslie-qiwa/graphql/internal/jsonutil" ) func TestUnmarshalGraphQL_benchmark(t *testing.T) { diff --git a/internal/jsonutil/graphql_test.go b/internal/jsonutil/graphql_test.go index 6329ed8..0e5e0ce 100644 --- a/internal/jsonutil/graphql_test.go +++ b/internal/jsonutil/graphql_test.go @@ -5,8 +5,8 @@ import ( "testing" "time" - "github.com/shurcooL/graphql" - "github.com/shurcooL/graphql/internal/jsonutil" + "github.com/leslie-qiwa/graphql" + "github.com/leslie-qiwa/graphql/internal/jsonutil" ) func TestUnmarshalGraphQL(t *testing.T) { diff --git a/query.go b/query.go index e10b771..0d13289 100644 --- a/query.go +++ b/query.go @@ -7,7 +7,7 @@ import ( "reflect" "sort" - "github.com/shurcooL/graphql/ident" + "github.com/leslie-qiwa/graphql/ident" ) func constructQuery(v interface{}, variables map[string]interface{}) string { diff --git a/scalar_test.go b/scalar_test.go index 8334b96..d25c5f4 100644 --- a/scalar_test.go +++ b/scalar_test.go @@ -3,7 +3,7 @@ package graphql_test import ( "testing" - "github.com/shurcooL/graphql" + "github.com/leslie-qiwa/graphql" ) func TestNewScalars(t *testing.T) {