task.go 201 B

1234567
  1. package scheme
  2. type Task struct {
  3. ID string `json:"id" yaml:"id"`
  4. Containers []Container `json:"containers" yaml:"containers"`
  5. Checker Checker `json:"checker" yaml:"checker"`
  6. }