Declare correct module name

This commit is contained in:
Dan Buch 2022-07-10 17:55:47 -04:00
parent f1c090f4cb
commit 206e6d6110
Signed by: meatballhat
GPG Key ID: A12F782281063434
4 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@ import (
"log" "log"
"os" "os"
"git.meatballhat.com/x/box-o-sand/argh" "git.meatballhat.com/x/argh"
"github.com/davecgh/go-spew/spew" "github.com/davecgh/go-spew/spew"
) )

2
go.mod
View File

@ -1,4 +1,4 @@
module git.meatballhat.com/x/box-o-sand/argh module git.meatballhat.com/x/argh
go 1.18 go 1.18

View File

@ -3,7 +3,7 @@ package argh_test
import ( import (
"testing" "testing"
"git.meatballhat.com/x/box-o-sand/argh" "git.meatballhat.com/x/argh"
"github.com/davecgh/go-spew/spew" "github.com/davecgh/go-spew/spew"
"github.com/stretchr/testify/assert" "github.com/stretchr/testify/assert"
) )

View File

@ -3,7 +3,7 @@ package argh_test
import ( import (
"testing" "testing"
"git.meatballhat.com/x/box-o-sand/argh" "git.meatballhat.com/x/argh"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"
) )