Files
crawlab/backend/entity/spider.go
2020-02-17 11:15:16 +08:00

13 lines
207 B
Go

package entity
type SpiderType struct {
Type string `json:"type" bson:"_id"`
Count int `json:"count" bson:"count"`
}
type ScrapySettingParam struct {
Key string
Value interface{}
Type string
}