Macro ENTRYPOINT

Source
macro_rules! ENTRYPOINT {
    ($($x:expr), +) => { ... };
}
Expand description
let entry_point = ENTRYPOINT!["/bin/bash/", "-c", "echo"];
assert_eq!(entry_point.to_string(), r#"ENTRYPOINT ["/bin/bash/", "-c", "echo"]"#);