(dict map[string]any)
| 37 | } |
| 38 | |
| 39 | func Validate(dict map[string]any) error { |
| 40 | return check(dict, tree.NewPath()) |
| 41 | } |
| 42 | |
| 43 | func check(value any, p tree.Path) error { |
| 44 | for pattern, fn := range checks { |
no test coverage detected
searching dependent graphs…