mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
13 lines
263 B
Go
13 lines
263 B
Go
package cmd
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/edgelesssys/constellation/coordinator/state"
|
|
)
|
|
|
|
type statusWaiter interface {
|
|
InitializePCRs(map[uint32][]byte, map[uint32][]byte)
|
|
WaitForAll(ctx context.Context, endpoints []string, status ...state.State) error
|
|
}
|