mirror of
https://github.com/foomo/keel.git
synced 2025-10-16 12:35:34 +00:00
14 lines
216 B
Go
14 lines
216 B
Go
package interfaces
|
|
|
|
import "context"
|
|
|
|
// ErrorPinger interface
|
|
type ErrorPinger interface {
|
|
Ping() error
|
|
}
|
|
|
|
// ErrorPingerWithContext interface
|
|
type ErrorPingerWithContext interface {
|
|
Ping(context.Context) error
|
|
}
|