2017-11-09 09:02:37 +00:00
|
|
|
package model
|
|
|
|
|
2017-12-04 06:50:11 +00:00
|
|
|
import "encoding/json"
|
2017-11-09 09:02:37 +00:00
|
|
|
|
|
|
|
type Config struct {
|
2017-12-04 06:50:11 +00:00
|
|
|
ID json.Number `json:"id,Number,omitempty"`
|
|
|
|
Target *Target `json:"target,omitempty"`
|
|
|
|
Schedule *Schedule `json:"schedule,omitempty"`
|
|
|
|
Crawler *Crawler `json:"crawler,omitempty"`
|
|
|
|
Items []Item `json:"items,omitempty"`
|
2017-11-09 09:02:37 +00:00
|
|
|
}
|