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

impl Glob {
    pub fn to_regex(
        _glob: &str,
        _strict_leading_dot: bool,
        _strict_wildcard_slash: bool,
    ) -> String {
        todo!()
    }
}