mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-06-06 21:59:12 -04:00
14 lines
272 B
Go
14 lines
272 B
Go
package cmd
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
|
|
"github.com/edgelesssys/constellation/coordinator/atls"
|
|
)
|
|
|
|
type recoveryClient interface {
|
|
Connect(endpoint string, validators []atls.Validator) error
|
|
PushStateDiskKey(ctx context.Context, stateDiskKey []byte) error
|
|
io.Closer
|
|
}
|