keel/interfaces/pinger.go
2025-10-02 16:50:48 +02:00

14 lines
220 B
Go

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