pg_v_man/infrastructure/config/db.go
2025-02-14 08:44:34 +01:00

7 lines
402 B
Go

package config
type DB struct {
ConnectionString string `name:"connection-string" env:"DB_CONNECTION_STRING" help:"Database connection string"`
Publication string `name:"publication" env:"DB_PUBLICATION" help:"Database publication name" default:"goplication"`
SlotName string `name:"slot-name" env:"DB_REPLICATION_SLOT_NAME" help:"Database replication slot name" default:"pg_v_man"`
}