mirror of
https://github.com/MizuchiLabs/mantrae.git
synced 2026-01-07 23:09:59 -06:00
32 lines
918 B
YAML
32 lines
918 B
YAML
version: "2"
|
|
sql:
|
|
- engine: "sqlite"
|
|
schema: "internal/db/migrations"
|
|
queries: "internal/db/queries"
|
|
gen:
|
|
go:
|
|
package: "db"
|
|
out: "internal/db"
|
|
emit_json_tags: true
|
|
emit_prepared_queries: true
|
|
emit_interface: true
|
|
emit_pointers_for_null_types: true
|
|
json_tags_case_style: "camel"
|
|
overrides:
|
|
- column: "traefik.config"
|
|
go_type:
|
|
type: "TraefikConfiguration"
|
|
pointer: true
|
|
- column: "traefik.entrypoints"
|
|
go_type:
|
|
type: "TraefikEntryPoints"
|
|
pointer: true
|
|
- column: "traefik.overview"
|
|
go_type:
|
|
type: "TraefikOverview"
|
|
pointer: true
|
|
- column: "traefik.source"
|
|
go_type:
|
|
import: "github.com/MizuchiLabs/mantrae/internal/source"
|
|
type: "Source"
|