mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-16 09:57:07 -05:00
12 lines
206 B
Go
12 lines
206 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/edgelesssys/constellation/coordinator/state"
|
||
|
)
|
||
|
|
||
|
type statusWaiter interface {
|
||
|
WaitForAll(ctx context.Context, status state.State, endpoints []string) error
|
||
|
}
|