Files
Archive/echo/internal/glue/interface.go
2024-06-15 20:30:12 +02:00

15 lines
233 B
Go

package glue
import (
"context"
)
type Reloader interface {
Reload(force bool) error
}
type HealthChecker interface {
// get relay by ID and check the connection health
HealthCheck(ctx context.Context, RelayID string) error
}