mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
18 lines
351 B
Go
18 lines
351 B
Go
package entity
|
|
|
|
type SpiderType struct {
|
|
Type string `json:"type" bson:"_id"`
|
|
Count int `json:"count" bson:"count"`
|
|
}
|
|
|
|
type ScrapySettingParam struct {
|
|
Key string `json:"key"`
|
|
Value interface{} `json:"value"`
|
|
Type string `json:"type"`
|
|
}
|
|
|
|
type ScrapyItem struct {
|
|
Name string `json:"name"`
|
|
Fields []string `json:"fields"`
|
|
}
|