feat: add lightweight mode entry and related hotkey support

This commit is contained in:
Tunglies
2025-03-23 03:10:48 +08:00
parent 69347160e9
commit d669650758
9 changed files with 39 additions and 6 deletions

View File

@@ -0,0 +1,6 @@
use crate::module::lightweight::entry_lightweight_mode;
pub fn lightweight_mode() {
log::info!(target: "app","Lightweight mode enabled");
entry_lightweight_mode();
}

View File

@@ -1,6 +1,7 @@
mod backup;
mod clash;
mod config;
mod lightweight;
mod profile;
mod proxy;
mod window;
@@ -9,6 +10,7 @@ mod window;
pub use backup::*;
pub use clash::*;
pub use config::*;
pub use lightweight::*;
pub use profile::*;
pub use proxy::*;
pub use window::*;