1use crate::models::podman::common::health_check::HealthCheck; 2 3pub struct ContainerHealthCheckOptions<'a> { 4 pub name: &'a str, 5} 6 7pub type ContainerHealthCheck = HealthCheck;