mdsf/tools/scalariform.rs
1///
2/// THIS FILE IS GENERATED USING CODE - DO NOT EDIT MANUALLY
3///
4use crate::runners::CommandType;
5
6#[inline]
7pub fn set_args(
8 mut cmd: std::process::Command,
9 file_path: &std::path::Path,
10) -> std::process::Command {
11 cmd.arg(file_path);
12 cmd
13}
14
15pub const COMMANDS: [CommandType; 1] = [CommandType::Direct("scalariform")];
16
17#[cfg(test)]
18mod test_scalariform {}