| 19 | } |
| 20 | |
| 21 | type MysqlC struct { |
| 22 | Addr string `yaml:"addr"` |
| 23 | User string `yaml:"user"` |
| 24 | Password string `yaml:"password"` |
| 25 | DBName string `yaml:"dbname"` |
| 26 | MinAlive int `yaml:"minAlive"` |
| 27 | MaxAlive int `yaml:"maxAlive"` |
| 28 | MaxIdle int `yaml:"maxIdle"` |
| 29 | } |
| 30 | |
| 31 | type MysqlS struct { |
| 32 | Admin MysqlC `yaml:"admin"` |
nothing calls this directly
no outgoing calls
no test coverage detected