12345678910111213141516171819202122232425262728293031 |
- package main
- type MgoConf struct {
- Host string
- DB string
- Coll string // 查询表
- Username string
- Password string
- Size int
- Name string
- Direct bool
- }
- type GlobalConf struct {
- MongoPA MgoConf
- MongoB MgoConf
- Clickhouse CkConf
- Env EnvConf
- }
- type CkConf struct {
- Host string
- Username string
- Password string
- }
- type EnvConf struct {
- Spec1 string
- Spec2 string
- Spec3 string
- }
|