12 lines
560 B
Go
12 lines
560 B
Go
// Package jet hosts the go-jet/v2 query-builder packages generated from the
|
|
// `backend` schema. The generator is driven by `cmd/jetgen` and writes each
|
|
// schema's tables, models, views, and enums into the `<schema>` subfolder.
|
|
//
|
|
// Regenerate with `make jet` from the galaxy/backend module root. The tool
|
|
// spins up a transient Postgres container, applies the embedded migrations,
|
|
// and rewrites the schema-scoped subdirectory; the package metadata in this
|
|
// file is preserved across regenerations.
|
|
package jet
|
|
|
|
//go:generate go run ../../../cmd/jetgen
|