use crate::{core::WaitFor, Image};
const NAME: &str = "softwaremill/elasticmq";
const TAG: &str = "0.14.6";
#[derive(Debug, Default)]
pub struct ElasticMq;
impl Image for ElasticMq {
type Args = ();
fn name(&self) -> String {
NAME.to_owned()
}
fn tag(&self) -> String {
TAG.to_owned()
}
fn ready_conditions(&self) -> Vec<WaitFor> {
vec![WaitFor::message_on_stdout("Started SQS rest server")]
}
}