mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
ddf94c7373
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
14 lines
312 B
Go
14 lines
312 B
Go
package cmd
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/edgelesssys/constellation/coordinator/atls"
|
|
"github.com/edgelesssys/constellation/coordinator/state"
|
|
)
|
|
|
|
type statusWaiter interface {
|
|
InitializeValidators([]atls.Validator) error
|
|
WaitForAll(ctx context.Context, endpoints []string, status ...state.State) error
|
|
}
|