config.go 231 B

12345678910111213141516
  1. package main
  2. type GlobalConf struct {
  3. MongoBase MgoConf
  4. MongoStd MgoConf
  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. }