| 41 | const modName = "check_things" |
| 42 | |
| 43 | type Check struct { |
| 44 | instName string |
| 45 | log log.Logger |
| 46 | } |
| 47 | |
| 48 | func New(modName, instName string, aliases, inlineArgs []string) (module.Module, error) { |
| 49 | return &Check{ |
nothing calls this directly
no outgoing calls
no test coverage detected