| 59 | var placeholderRe = regexp.MustCompile(`{[a-zA-Z0-9_]+?}`) |
| 60 | |
| 61 | type Check struct { |
| 62 | instName string |
| 63 | log *log.Logger |
| 64 | |
| 65 | stage Stage |
| 66 | actions map[int]modconfig.FailAction |
| 67 | cmd string |
| 68 | cmdArgs []string |
| 69 | } |
| 70 | |
| 71 | func New(c *container.C, modName, instName string) (module.Module, error) { |
| 72 | chk := &Check{ |
nothing calls this directly
no outgoing calls
no test coverage detected