keel/pinger.go
2022-03-14 13:12:25 +01:00

14 lines
210 B
Go

package keel
import "context"
// ErrorPinger interface
type ErrorPinger interface {
Ping() error
}
// ErrorPingerWithContext interface
type ErrorPingerWithContext interface {
Ping(context.Context) error
}