just 0.9.0

🤖 Just a command runner
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::common::*;

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

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