Skip to content

Commit

Permalink
Merge pull request #1 from andygarfield/master
Browse files Browse the repository at this point in the history
Fixed imports
  • Loading branch information
jeffwillette authored Mar 13, 2018
2 parents 22344c6 + 1b45e6b commit 04a074e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pet_tags.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package main
import (
"context"

graphql "github.com/graph-gophers/graphql-go"
"github.com/jinzhu/gorm"
graphql "github.com/neelance/graphql-go"
)

// Tag is the base type for a pet tag to be used by the db and gql
Expand Down
2 changes: 1 addition & 1 deletion pets.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package main
import (
"context"

graphql "github.com/graph-gophers/graphql-go"
"github.com/jinzhu/gorm"
graphql "github.com/neelance/graphql-go"
)

// Pet is the base type for pets to be used by the db and gql
Expand Down
2 changes: 1 addition & 1 deletion resolvers.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"strconv"
"strings"

graphql "github.com/neelance/graphql-go"
graphql "github.com/graph-gophers/graphql-go"
)

var db DB
Expand Down
4 changes: 2 additions & 2 deletions server.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"log"
"net/http"

"github.com/neelance/graphql-go"
"github.com/graph-gophers/graphql-go"

"github.com/neelance/graphql-go/relay"
"github.com/graph-gophers/graphql-go/relay"
)

// nolint: gas
Expand Down
2 changes: 1 addition & 1 deletion users.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (
"strconv"
"strings"

graphql "github.com/graph-gophers/graphql-go"
"github.com/jinzhu/gorm"
graphql "github.com/neelance/graphql-go"
)

// User is the base user model to be used throughout the app
Expand Down

0 comments on commit 04a074e

Please sign in to comment.