Fix the imports I botched really badly

Apparently I don't understand how go modules work.
This commit is contained in:
Eli Ribble 2026-05-14 17:04:09 +00:00
parent 44d981fbfc
commit 41fe97d336
No known key found for this signature in database
169 changed files with 365 additions and 362 deletions

View file

@ -7,7 +7,7 @@
package enum
import "source.gleipnir.technology/Gleipnir/jet/postgres"
import "source.gleipnir.technology/Gleipnir/jet/v2/postgres"
var MpaaRating = &struct {
G postgres.StringExpression

View file

@ -8,7 +8,7 @@
package table
import (
"source.gleipnir.technology/Gleipnir/jet/postgres"
"source.gleipnir.technology/Gleipnir/jet/v2/postgres"
)
var Actor = newActorTable("dvds", "actor", "")

View file

@ -8,7 +8,7 @@
package table
import (
"source.gleipnir.technology/Gleipnir/jet/postgres"
"source.gleipnir.technology/Gleipnir/jet/v2/postgres"
)
var Category = newCategoryTable("dvds", "category", "")

View file

@ -8,7 +8,7 @@
package table
import (
"source.gleipnir.technology/Gleipnir/jet/postgres"
"source.gleipnir.technology/Gleipnir/jet/v2/postgres"
)
var Film = newFilmTable("dvds", "film", "")

View file

@ -8,7 +8,7 @@
package table
import (
"source.gleipnir.technology/Gleipnir/jet/postgres"
"source.gleipnir.technology/Gleipnir/jet/v2/postgres"
)
var FilmActor = newFilmActorTable("dvds", "film_actor", "")

View file

@ -8,7 +8,7 @@
package table
import (
"source.gleipnir.technology/Gleipnir/jet/postgres"
"source.gleipnir.technology/Gleipnir/jet/v2/postgres"
)
var FilmCategory = newFilmCategoryTable("dvds", "film_category", "")

View file

@ -8,7 +8,7 @@
package table
import (
"source.gleipnir.technology/Gleipnir/jet/postgres"
"source.gleipnir.technology/Gleipnir/jet/v2/postgres"
)
var Language = newLanguageTable("dvds", "language", "")

View file

@ -8,7 +8,7 @@
package view
import (
"source.gleipnir.technology/Gleipnir/jet/postgres"
"source.gleipnir.technology/Gleipnir/jet/v2/postgres"
)
var ActorInfo = newActorInfoTable("dvds", "actor_info", "")

View file

@ -8,7 +8,7 @@
package view
import (
"source.gleipnir.technology/Gleipnir/jet/postgres"
"source.gleipnir.technology/Gleipnir/jet/v2/postgres"
)
var CustomerList = newCustomerListTable("dvds", "customer_list", "")

View file

@ -11,7 +11,7 @@ import (
// dot import so that jet go code would resemble as much as native SQL
// dot import is not mandatory
. "source.gleipnir.technology/Gleipnir/jet/examples/quick-start/.gen/jetdb/dvds/table"
. "source.gleipnir.technology/Gleipnir/jet/postgres"
. "source.gleipnir.technology/Gleipnir/jet/v2/postgres"
"source.gleipnir.technology/Gleipnir/jet/examples/quick-start/.gen/jetdb/dvds/enum"
"source.gleipnir.technology/Gleipnir/jet/examples/quick-start/.gen/jetdb/dvds/model"