mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
16 lines
282 B
Go
16 lines
282 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/edgelesssys/constellation/coordinator/state"
|
||
|
)
|
||
|
|
||
|
type stubStatusWaiter struct {
|
||
|
waitForAllErr error
|
||
|
}
|
||
|
|
||
|
func (w stubStatusWaiter) WaitForAll(ctx context.Context, status state.State, endpoints []string) error {
|
||
|
return w.waitForAllErr
|
||
|
}
|