From 206e6d61100b2a1d61ff39474aeacc62ef98acbd Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Sun, 10 Jul 2022 17:55:47 -0400 Subject: [PATCH] Declare correct module name --- cmd/argh-example/main.go | 2 +- go.mod | 2 +- parser_test.go | 2 +- querier_test.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) 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" )