aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-external-packages/src/symfony/component/finder/glob.rs
blob: d6aadd29465f5f8d27844d2bb4ca9da0d9cd3ad3 (plain)
1
2
3
4
5
6
7
8
#[derive(Debug)]
pub struct Glob;

impl Glob {
    pub fn to_regex(glob: &str, strict_leading_dot: bool, strict_wildcard_slash: bool) -> String {
        todo!()
    }
}