Update On Sat Jun 15 20:30:11 CEST 2024

This commit is contained in:
github-action[bot]
2024-06-15 20:30:12 +02:00
parent b730d8852b
commit b9b5aadb6c
68 changed files with 1297 additions and 628 deletions

View File

@@ -0,0 +1,14 @@
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
}