Files
podman/pkg/domain/entities/containers.go
Brent Baude baf3a9b3a7 use boolreport for containerexists response
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>
2020-03-20 13:01:24 -05:00

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
}