Rename module to a fully qualified name

This commit is contained in:
Alessio 2025-04-19 18:07:41 -07:00
parent 672700d380
commit d4fe4cddeb
3 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ import (
_ "github.com/mattn/go-sqlite3" _ "github.com/mattn/go-sqlite3"
"sqlite_lint/pkg/checks" "github.com/playfulpachyderm/sqlite-lint/pkg/checks"
) )
const ( const (

2
go.mod
View File

@ -1,4 +1,4 @@
module sqlite_lint module github.com/playfulpachyderm/sqlite-lint
go 1.24.0 go 1.24.0

View File

@ -6,7 +6,7 @@ import (
_ "github.com/mattn/go-sqlite3" _ "github.com/mattn/go-sqlite3"
"sqlite_lint/pkg/checks" "github.com/playfulpachyderm/sqlite-lint/pkg/checks"
) )
func TestFailureCases(t *testing.T) { func TestFailureCases(t *testing.T) {