mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-21 17:21:09 +01:00
12 lines
345 B
Go
12 lines
345 B
Go
package notification
|
|
|
|
import "github.com/crawlab-team/crawlab/core/models/models/v2"
|
|
|
|
type VariableDataTask struct {
|
|
Task *models.TaskV2 `json:"task"`
|
|
TaskStat *models.TaskStatV2 `json:"task_stat"`
|
|
Spider *models.SpiderV2 `json:"spider"`
|
|
Node *models.NodeV2 `json:"node"`
|
|
Schedule *models.ScheduleV2 `json:"schedule"`
|
|
}
|