mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-30 18:00:56 +01:00
16 lines
285 B
Go
16 lines
285 B
Go
interface Schedule {
|
|
_id?: string;
|
|
name?: string;
|
|
description?: string;
|
|
spider_id?: string;
|
|
spider_name?: string;
|
|
cron?: string;
|
|
cmd?: string;
|
|
param?: string;
|
|
priority?: number;
|
|
mode?: TaskMode;
|
|
node_ids?: string[];
|
|
node_tags?: string[];
|
|
enabled?: boolean;
|
|
}
|