Files
coredns/plugin/ready/readiness.go

8 lines
227 B
Go
Raw Permalink Normal View History

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
}