| 123456789101112131415161718 |
- package scheme
- const CHECKER_KIND_SEQUENTIAL = "sequential"
- const CHECKER_KIND_PARALLEL = "parallel"
- type SequentialChecker struct {
- Checks []Check `json:"checks" yaml:"checks"`
- }
- type ParallelChecker struct {
- Checks []Check `json:"checks" yaml:"checks"`
- }
- type Checker struct {
- Kind string `json:"kind" yaml:"kind"`
- KindSequential SequentialChecker `json:"kind_sequential" yaml:"kind_sequential"`
- KindParallel ParallelChecker `json:"kind_parallel" yaml:"kind_parallel"`
- }
|