Skip to content

Commit

Permalink
updated import for gogm v2
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Solender committed Oct 29, 2020
1 parent 776cad9 commit 0c4947b
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ type MyNeo4jObject struct {
package main

import (
"github.com/mindstand/gogm"
"github.com/mindstand/gogm/v2"
"time"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/example.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/mindstand/gogm"
"github.com/mindstand/gogm/v2"
"reflect"
"time"
)
Expand Down
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ require (
github.com/google/uuid v1.1.1
github.com/kr/pretty v0.1.0 // indirect
github.com/mindstand/go-cypherdsl v0.2.0
github.com/mindstand/gogm v1.4.1
github.com/neo4j/neo4j-go-driver v1.8.1-0.20200622090208-4295b59525c9
github.com/sirupsen/logrus v1.6.0
github.com/stretchr/objx v0.2.0 // indirect
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ github.com/kr/text v0.1.0 h1:45sCR5RtlFHMR4UwH9sdQ5TC8v0qDQCHnXt+kaKSTVE=
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
github.com/mindstand/go-cypherdsl v0.2.0 h1:/B6A8DhWk2RksdJxruy3+ii3Hvrr5JU+2vL3/oJMLrI=
github.com/mindstand/go-cypherdsl v0.2.0/go.mod h1:swzbrSTuq3CRgFglg3aVThG9GBQmHXz6AY81q9mRMto=
github.com/mindstand/gogm v1.4.1 h1:vrcAMLDAQhJ+avxoU7AbvaP9utKrtpBVKXuLxwue6eo=
github.com/mindstand/gogm v1.4.1/go.mod h1:Ll/7de/DAYpshgWdPlAWjJL13ZsP1TMWg4LTopoXm14=
github.com/neo4j/neo4j-go-driver v1.8.1-0.20200622090208-4295b59525c9 h1:amJ2VBG5eDK/r9pUjo6/h2np0kYyla5FLWWLyg29H0w=
github.com/neo4j/neo4j-go-driver v1.8.1-0.20200622090208-4295b59525c9/go.mod h1:0A49wIv0oP3uQdnbceK7Kc+snlY5B0F6dmtYArM0ltk=
github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
Expand Down
2 changes: 1 addition & 1 deletion mocks/ISession.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mocks/SessionV2.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion mocks/TransactionV2.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion testing_/linking_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
package testing_

import (
"github.com/mindstand/gogm"
"github.com/mindstand/gogm/v2"
"github.com/stretchr/testify/require"
"testing"
)
Expand Down
2 changes: 1 addition & 1 deletion testing_/test_edge.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
package testing_

import (
"github.com/mindstand/gogm"
"github.com/mindstand/gogm/v2"
"reflect"
)

Expand Down
2 changes: 1 addition & 1 deletion testing_/test_obj.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

package testing_

import "github.com/mindstand/gogm"
import "github.com/mindstand/gogm/v2"

type ExampleObject struct {
gogm.BaseNode
Expand Down
2 changes: 1 addition & 1 deletion testing_/test_obj2.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

package testing_

import "github.com/mindstand/gogm"
import "github.com/mindstand/gogm/v2"

type ExampleObject2 struct {
gogm.BaseNode
Expand Down

0 comments on commit 0c4947b

Please sign in to comment.