aboutsummaryrefslogtreecommitdiff
path: root/plugin/ready/readiness.go
blob: 7aca5dfc263f3c59787b7ad02d8e8e0738299a87 (plain) (blame)
1
2
3
4
5
6
7
package ready

// The Readiness interface needs to be implemented by each plugin willing to provide a readiness check.
type Readiness interface {
	// Ready is called by ready to see whether the plugin is ready.
	Ready() bool
}