1234567891011121314151617181920212223242526272829303132333435 |
- package main
- type GlobalConf struct {
- MongoB MgoConf
- Log Log
- Env EnvConf
- }
- type EnvConf struct {
- FileStart string
- NomalStart string
- NextAddr string
- NextPort string
- LocalPort string
- }
- type MgoConf struct {
- Host string
- DB string
- Coll string // 查询表
- Username string
- Password string
- Size int
- Direct bool
- }
- type Log struct {
- LogPath string
- MaxSize int
- Compress bool
- MaxAge int
- MaxBackups int
- LogLevel string
- Format string
- }
|