mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
8f5f84deb5
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
15 lines
286 B
Go
15 lines
286 B
Go
package cmd
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
|
|
"github.com/edgelesssys/constellation/internal/atls"
|
|
)
|
|
|
|
type recoveryClient interface {
|
|
Connect(endpoint string, validators atls.Validator) error
|
|
PushStateDiskKey(ctx context.Context, stateDiskKey, measurementSecret []byte) error
|
|
io.Closer
|
|
}
|