12345678910111213141516171819202122232425262728293031323334353637 |
- package main
- type GlobalConf struct {
- MongoB MgoConf
- Cron CronConf
- Log Log
- }
- type MgoConf struct {
- Host string
- DB string
- Coll string // 查询表
- Username string
- Password string
- Size int
- }
- //CronConf 定时任务
- type CronConf struct {
- Spec string
- Start string
- End string
- Delete int
- TitleOut string
- DetailOut string
- TitleMatch string
- }
- type Log struct {
- LogPath string
- MaxSize int
- Compress bool
- MaxAge int
- MaxBackups int
- LogLevel string
- Format string
- }
|