mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
e13ec3f914
Signed-off-by: Malte Poll <mp@edgeless.systems>
15 lines
272 B
Go
15 lines
272 B
Go
package cmd
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
|
|
"github.com/edgelesssys/constellation/coordinator/atls"
|
|
)
|
|
|
|
type recoveryClient interface {
|
|
Connect(ip, port string, validators []atls.Validator) error
|
|
PushStateDiskKey(ctx context.Context, stateDiskKey []byte) error
|
|
io.Closer
|
|
}
|