mirror of
https://github.com/containers/podman.git
synced 2025-06-19 08:09:12 +08:00

in the case of exists, use a boolreport structure so that responses can be consistent pointer and error Signed-off-by: Brent Baude <bbaude@redhat.com>
20 lines
237 B
Go
20 lines
237 B
Go
package entities
|
|
|
|
import "time"
|
|
|
|
type WaitOptions struct {
|
|
Condition string
|
|
Interval time.Duration
|
|
Latest bool
|
|
}
|
|
|
|
type WaitReport struct {
|
|
Id string
|
|
Error error
|
|
ExitCode int32
|
|
}
|
|
|
|
type BoolReport struct {
|
|
Value bool
|
|
}
|