Skip to content

Commit

Permalink
replace with fork repo package
Browse files Browse the repository at this point in the history
Signed-off-by: Leslie Qi Wang <[email protected]>
  • Loading branch information
leslie-qiwa committed Nov 1, 2021
1 parent c2c251a commit 1d07c2e
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion example/graphqldev/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion graphql.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion graphql_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion ident/ident_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"reflect"
"testing"

"github.com/shurcooL/graphql/ident"
"github.com/leslie-qiwa/graphql/ident"
)

func Example_lowerCamelCaseToMixedCaps() {
Expand Down
4 changes: 2 additions & 2 deletions internal/jsonutil/benchmark_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
4 changes: 2 additions & 2 deletions internal/jsonutil/graphql_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion query.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion scalar_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package graphql_test
import (
"testing"

"github.com/shurcooL/graphql"
"github.com/leslie-qiwa/graphql"
)

func TestNewScalars(t *testing.T) {
Expand Down

0 comments on commit 1d07c2e

Please sign in to comment.