123456789101112131415161718 |
- package main
- type (
- Config struct {
- CornExp1 string `json:"cornexp1"`
- TiDb struct {
- Host string `json:"host"`
- Port int `json:"port"`
- Database string `json:"database"`
- User string `json:"user"`
- Password string `json:"password"`
- PollSize int `json:"poolsize"`
- MaxIdle int `json:"maxidle"`
- MaxLeftTime int `json:"maxleft"`
- } `json:"tiDb"`
- Bath int
- }
- )
|