diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-08-15 19:51:27 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-08-15 19:51:27 +0800 |
| commit | 046ac064b6f4790f9053ad1e6109843bb38f89dd (patch) | |
| tree | 80c16af0d217f69001b3fad7a02dea49c2a3aebc /mingling/src/osc94.rs | |
| parent | aa2b0daa88089df32b3ea67d7c1831b5d8fd64f8 (diff) | |
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.
Diffstat (limited to 'mingling/src/osc94.rs')
| -rw-r--r-- | mingling/src/osc94.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mingling/src/osc94.rs b/mingling/src/osc94.rs new file mode 100644 index 0000000..7dabb4a --- /dev/null +++ b/mingling/src/osc94.rs @@ -0,0 +1,5 @@ +mod guard; +pub use guard::*; + +mod state; +pub use state::*; |
