fix(config): PostgresExtraParams struct tag (#1294)

fix: PostgresExtraParams to lowercase in Config
This commit is contained in:
soup 2023-12-12 20:35:12 +01:00 committed by GitHub
parent b2c32a421e
commit fc0bf33412
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,7 +23,7 @@ type Config struct {
PostgresUser string `toml:"postgresUser"` PostgresUser string `toml:"postgresUser"`
PostgresPass string `toml:"postgresPass"` PostgresPass string `toml:"postgresPass"`
PostgresSSLMode string `toml:"postgresSSLMode"` PostgresSSLMode string `toml:"postgresSSLMode"`
PostgresExtraParams string `toml:"PostgresExtraParams"` PostgresExtraParams string `toml:"postgresExtraParams"`
} }
type ConfigUpdate struct { type ConfigUpdate struct {