Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::path::PathBuf;

use diagnostic_quick::error_3rd::GlobSet;

mod run;

pub struct FlattenFlies {
    pub output: PathBuf,
    pub pattern: GlobSet,
    pub delete_empty: bool,
    pub execute: bool,
    pub overwrite: bool,
}