123456789101112131415161718192021 |
- package main
- type GlobalConf struct {
- Mongo MgoConf
- Env EnvConf
- }
- type MgoConf struct {
- Host string
- DB string
- Coll string // 查询表
- Username string
- Password string
- Size int
- Direct bool
- }
- type EnvConf struct {
- File string
- Sheet string
- }
|