use String;
use Vec;
use ;
/// Represents a `SHELL` instruction.
/// ```rust
/// use nanite_docker::{Shell, Instruction, Run};
///
/// let shell = Shell {
/// argv: vec!["sh".into(), "-c".into()],
/// };
/// let shell_built = format!("{shell}");
/// assert_eq!(shell_built, r#"SHELL ["sh", "-c"]"#);
/// ```