Bulk replace project references in go code

This commit is contained in:
Eli Ribble 2026-05-09 01:43:14 +00:00
parent 814ebddfa2
commit 4474319e73
No known key found for this signature in database
170 changed files with 488 additions and 488 deletions

View file

@ -9,13 +9,13 @@ import (
"github.com/stretchr/testify/require"
"github.com/go-jet/jet/v2/generator/metadata"
"github.com/go-jet/jet/v2/generator/sqlite"
"github.com/go-jet/jet/v2/generator/template"
"github.com/go-jet/jet/v2/internal/testutils"
sqlite2 "github.com/go-jet/jet/v2/sqlite"
"github.com/go-jet/jet/v2/tests/.gentestdata/sqlite/sakila/model"
"github.com/go-jet/jet/v2/tests/internal/utils/repo"
"github.com/Gleipnir-Technology/jet/generator/metadata"
"github.com/Gleipnir-Technology/jet/generator/sqlite"
"github.com/Gleipnir-Technology/jet/generator/template"
"github.com/Gleipnir-Technology/jet/internal/testutils"
sqlite2 "github.com/Gleipnir-Technology/jet/sqlite"
"github.com/Gleipnir-Technology/jet/tests/.gentestdata/sqlite/sakila/model"
"github.com/Gleipnir-Technology/jet/tests/internal/utils/repo"
)
func TestGeneratedModel(t *testing.T) {
@ -170,7 +170,7 @@ const actorSQLBuilderFile = `
package table
import (
"github.com/go-jet/jet/v2/sqlite"
"github.com/Gleipnir-Technology/jet/sqlite"
)
var Actor = newActorTable("", "actor", "")
@ -291,7 +291,7 @@ const filmListSQLBuilderFile = `
package view
import (
"github.com/go-jet/jet/v2/sqlite"
"github.com/Gleipnir-Technology/jet/sqlite"
)
var FilmList = newFilmListTable("", "film_list", "")