diff --git a/cmd/argh-example/main.go b/cmd/argh-example/main.go index 8c30a90..f246999 100644 --- a/cmd/argh-example/main.go +++ b/cmd/argh-example/main.go @@ -6,7 +6,7 @@ import ( "log" "os" - "git.meatballhat.com/x/box-o-sand/argh" + "git.meatballhat.com/x/argh" "github.com/davecgh/go-spew/spew" ) diff --git a/go.mod b/go.mod index 7091c9a..827a229 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module git.meatballhat.com/x/box-o-sand/argh +module git.meatballhat.com/x/argh go 1.18 diff --git a/parser_test.go b/parser_test.go index a206d3b..6ac97af 100644 --- a/parser_test.go +++ b/parser_test.go @@ -3,7 +3,7 @@ package argh_test import ( "testing" - "git.meatballhat.com/x/box-o-sand/argh" + "git.meatballhat.com/x/argh" "github.com/davecgh/go-spew/spew" "github.com/stretchr/testify/assert" ) diff --git a/querier_test.go b/querier_test.go index c366e4e..2598e21 100644 --- a/querier_test.go +++ b/querier_test.go @@ -3,7 +3,7 @@ package argh_test import ( "testing" - "git.meatballhat.com/x/box-o-sand/argh" + "git.meatballhat.com/x/argh" "github.com/stretchr/testify/require" )