12345678910111213141516171819202122232425262728 |
- package main
- type Conf struct {
- Mongo MgoConf `json:"mongo"`
- Cron
- Classfication
- }
- type MgoConf struct {
- Host string
- DB string
- Coll string // 查询表
- SaveColl string //保存表
- Username string
- Password string
- Size int
- LastID string //上次处理的最新ID
- }
- type Cron struct {
- Spec string
- }
- type Classfication struct {
- IP string
- Port string
- Localport string
- }
|