12345678910111213141516171819202122232425262728 |
- package main
- type GlobalConf struct {
- MongoBase MgoConf
- MongoStd MgoConf
- Env EnvConf
- ES EsConf
- }
- type MgoConf struct {
- Host string
- DB string
- Coll string // 查询表
- Username string
- Password string
- Size int
- Direct bool
- }
- type EsConf struct {
- URL string
- Username string
- Password string
- }
- type EnvConf struct {
- Autoid int
- Endid int
- }
|