Maintainer can maintain a store of results by deleting old check files that are no longer needed or performing other required tasks.
| 29 | // deleting old check files that are no longer |
| 30 | // needed or performing other required tasks. |
| 31 | type Maintainer interface { |
| 32 | Maintain() error |
| 33 | } |
| 34 | |
| 35 | // Notifier can notify ops or sysadmins of |
| 36 | // potential problems. A Notifier should keep |