Skip to content

Commit

Permalink
updated imports
Browse files Browse the repository at this point in the history
  • Loading branch information
machship-mm committed Feb 13, 2021
1 parent 965f948 commit 73255d7
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion example/graphqldev/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import (
"net/http/httptest"
"os"

graphql "go-graphql-client"
graphql "github.com/machship-mm/go-graphql-client"

graphqlserver "github.com/graph-gophers/graphql-go"
"github.com/graph-gophers/graphql-go/example/starwars"
Expand Down
2 changes: 1 addition & 1 deletion example/subscription/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"os"
"time"

graphql "go-graphql-client"
graphql "github.com/machship-mm/go-graphql-client"
)

func main() {
Expand Down
3 changes: 2 additions & 1 deletion example/test/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ package main
import (
"context"
"fmt"
"go-graphql-client"
"log"

"github.com/machship-mm/go-graphql-client"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module go-graphql-client
module github.com/machship-mm/go-graphql-client

go 1.16

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"

"go-graphql-client/internal/jsonutil"
"github.com/machship-mm/go-graphql-client/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"

"go-graphql-client"
"github.com/machship-mm/go-graphql-client"
)

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"

"go-graphql-client/ident"
"github.com/machship-mm/go-graphql-client/ident"
)

func Example_lowerCamelCaseToMixedCaps() {
Expand Down
5 changes: 3 additions & 2 deletions internal/jsonutil/benchmark_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ import (
"testing"
"time"

graphql "go-graphql-client"
"go-graphql-client/internal/jsonutil"
"github.com/machship-mm/go-graphql-client/internal/jsonutil"

graphql "github.com/machship-mm/go-graphql-client"
)

func TestUnmarshalGraphQL_benchmark(t *testing.T) {
Expand Down
5 changes: 3 additions & 2 deletions internal/jsonutil/graphql_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ import (
"testing"
"time"

graphql "go-graphql-client"
"go-graphql-client/internal/jsonutil"
"github.com/machship-mm/go-graphql-client/internal/jsonutil"

graphql "github.com/machship-mm/go-graphql-client"
)

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"

"go-graphql-client/ident"
"github.com/machship-mm/go-graphql-client/ident"
)

func constructQuery(v interface{}, variables map[string]interface{}, name string) string {
Expand Down
2 changes: 1 addition & 1 deletion scalar_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"testing"
"time"

"go-graphql-client"
"github.com/machship-mm/go-graphql-client"
)

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

0 comments on commit 73255d7

Please sign in to comment.