feat: enhance clash caller & support more commands

This commit is contained in:
GyDi
2021-12-14 18:37:03 +08:00
parent 4719649bf4
commit 881a95520a
6 changed files with 121 additions and 32 deletions

View File

@@ -0,0 +1,6 @@
use std::sync::{Arc, Mutex};
use super::emit::ClashInfoPayload;
#[derive(Default)]
pub struct ClashInfoState(pub Arc<Mutex<ClashInfoPayload>>);