diff options
Diffstat (limited to 'json')
-rw-r--r-- | json/json.go | 2 | ||||
-rw-r--r-- | json/json_test.go | 2 | ||||
-rw-r--r-- | json/profile/json.go | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/json/json.go b/json/json.go index 18f6870..ca1a905 100644 --- a/json/json.go +++ b/json/json.go @@ -1,7 +1,7 @@ package json import ( - . "github.com/vektah/goparsify" + . "github.com/oec/goparsify" ) var ( diff --git a/json/json_test.go b/json/json_test.go index 13f2e40..097bc34 100644 --- a/json/json_test.go +++ b/json/json_test.go @@ -6,9 +6,9 @@ import ( "os" + "github.com/oec/goparsify" parsecJson "github.com/prataprc/goparsec/json" "github.com/stretchr/testify/require" - "github.com/vektah/goparsify" ) func TestUnmarshal(t *testing.T) { diff --git a/json/profile/json.go b/json/profile/json.go index b7d9733..d02b5fa 100644 --- a/json/profile/json.go +++ b/json/profile/json.go @@ -7,8 +7,8 @@ import ( "runtime" "runtime/pprof" - "github.com/vektah/goparsify" - "github.com/vektah/goparsify/json" + "github.com/oec/goparsify" + "github.com/oec/goparsify/json" ) var cpuprofile = flag.String("cpuprofile", "", "write cpu profile to file") |