aboutsummaryrefslogtreecommitdiff
path: root/mingling_picker/src/parselib.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-07-16 04:08:09 +0800
committer魏曹先生 <1992414357@qq.com>2026-07-16 05:25:21 +0800
commitea6dda762aa147ebcbc29b269e65b78dd046f4dd (patch)
tree9bf354ddc8d7b95162f3ae75e9800313eef1a26f /mingling_picker/src/parselib.rs
parent0bded81c4e205e387998bf64087acfc39cf70e3e (diff)
feat(mingling_picker): replace bool Matcher with FlagMatcherfeat/picker2
Rename `bool_matcher` module to `flag_matcher` and introduce a dedicated `FlagMatcher` struct, moving matching logic away from the `bool` type itself
Diffstat (limited to 'mingling_picker/src/parselib.rs')
-rw-r--r--mingling_picker/src/parselib.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/mingling_picker/src/parselib.rs b/mingling_picker/src/parselib.rs
index 5950c9d..cf550b7 100644
--- a/mingling_picker/src/parselib.rs
+++ b/mingling_picker/src/parselib.rs
@@ -1,4 +1,5 @@
-mod bool_matcher;
+mod flag_matcher;
+pub use flag_matcher::*;
mod style;
pub use style::*;