mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2026-01-29 17:15:38 +08:00
feat: add lightweight mode entry and related hotkey support
This commit is contained in:
6
src-tauri/src/feat/lightweight.rs
Normal file
6
src-tauri/src/feat/lightweight.rs
Normal 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();
|
||||
}
|
||||
@@ -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::*;
|
||||
|
||||
Reference in New Issue
Block a user