rm(lightweight): unused logging

This commit is contained in:
Tunglies
2025-03-29 13:05:58 +08:00
parent 9ebde802d4
commit 4831d88467
4 changed files with 2 additions and 5 deletions

View File

@@ -0,0 +1,9 @@
use crate::module::lightweight;
use super::CmdResult;
#[tauri::command]
pub async fn entry_lightweight_mode() -> CmdResult {
lightweight::entry_lightweight_mode();
Ok(())
}