just 0.5.7

🤖 Just a command runner
Documentation
use crate::common::*;

#[derive(Debug)]
pub(crate) enum Setting<'src> {
  Shell(Shell<'src>),
}

#[derive(Debug, PartialEq)]
pub(crate) struct Shell<'src> {
  pub(crate) command: StringLiteral<'src>,
  pub(crate) arguments: Vec<StringLiteral<'src>>,
}