Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Runnable ¶
type Runnable interface { // Run executes a check and returns an outcome (outcomes.Outcome). Run() outcomes.Outcome // Description returns human-readable information on what check is being executed. Description() string // Suggestion returns a human-readable suggestion on how to fix the issue. Suggestion() string // FixIt attempts to fix the issue at hand. FixIt() error }
Runnable is a type of generic function that can be executed; it returns pass/fail on a given check.
Click to show internal directories.
Click to hide internal directories.