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