config.go 276 B

123456789101112131415161718192021
  1. package main
  2. type GlobalConf struct {
  3. Mongo MgoConf
  4. Env EnvConf
  5. }
  6. type MgoConf struct {
  7. Host string
  8. DB string
  9. Coll string // 查询表
  10. Username string
  11. Password string
  12. Size int
  13. Direct bool
  14. }
  15. type EnvConf struct {
  16. File string
  17. Sheet string
  18. }