mirror of
https://github.com/go-task/task.git
synced 2024-12-14 10:52:43 +02:00
33b167215d
- this makes it impossible to import these packages outside Task - as a side effect, it makes the root directory cleaner
15 lines
261 B
Go
15 lines
261 B
Go
package status
|
|
|
|
// None is a no-op Checker
|
|
type None struct{}
|
|
|
|
// IsUpToDate implements the Checker interface
|
|
func (None) IsUpToDate() (bool, error) {
|
|
return false, nil
|
|
}
|
|
|
|
// OnError implements the Checker interface
|
|
func (None) OnError() error {
|
|
return nil
|
|
}
|