From 046ac064b6f4790f9053ad1e6109843bb38f89dd Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 15 Aug 2026 19:51:27 +0800 Subject: feat: move OSC94 under its own module and add confirmer predicates Extract OSC94 state and guard types from `res` into a dedicated `osc94` module, and add `ConfirmerCount` and `ConfirmerPredicate` types with `YesConfirm` and `TrueConfirm` implementations. --- mingling/src/confirm.rs | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 mingling/src/confirm.rs (limited to 'mingling/src/confirm.rs') diff --git a/mingling/src/confirm.rs b/mingling/src/confirm.rs new file mode 100644 index 0000000..45a12d8 --- /dev/null +++ b/mingling/src/confirm.rs @@ -0,0 +1,5 @@ +mod predicate; +pub use predicate::*; + +mod count; +pub use count::*; -- cgit