diff --git a/cmd/main.go b/cmd/main.go index 45611e9..857dfb5 100644 --- a/cmd/main.go +++ b/cmd/main.go @@ -7,7 +7,7 @@ import ( _ "github.com/mattn/go-sqlite3" - "sqlite_lint/pkg/checks" + "github.com/playfulpachyderm/sqlite-lint/pkg/checks" ) const ( diff --git a/go.mod b/go.mod index cfabb7b..67d680d 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module sqlite_lint +module github.com/playfulpachyderm/sqlite-lint go 1.24.0 diff --git a/pkg/checks/check_test.go b/pkg/checks/check_test.go index eeff602..0e46cdc 100644 --- a/pkg/checks/check_test.go +++ b/pkg/checks/check_test.go @@ -6,7 +6,7 @@ import ( _ "github.com/mattn/go-sqlite3" - "sqlite_lint/pkg/checks" + "github.com/playfulpachyderm/sqlite-lint/pkg/checks" ) func TestFailureCases(t *testing.T) {