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"`
}