feat: add TLS configuration option for MySQL (#384)

This commit is contained in:
Tom
2025-09-03 19:43:16 +08:00
committed by GitHub
parent faee954f6d
commit ce0291a8f9
6 changed files with 7 additions and 2 deletions

View File

@@ -17,6 +17,7 @@ type Mysql struct {
Username string `mapstructure:"username"`
Password string `mapstructure:"password"`
Dbname string `mapstructure:"dbname"`
Tls string `mapstructure:"tls"` // true / false / skip-verify / custom
}
type Postgresql struct {