ksud: added module mount command to check current mount system enabled

This commit is contained in:
rifsxd
2025-04-02 15:12:44 +06:00
parent c5aa6ffffc
commit 02dbb7d0f7
6 changed files with 27 additions and 0 deletions
+6
View File
@@ -493,6 +493,12 @@ fn _list_modules(path: &str) -> Vec<HashMap<String, String>> {
modules
}
pub fn mount_system() -> Result<()> {
println!("Current mount system: {}", defs::MOUNT_SYSTEM);
Ok(())
}
pub fn list_modules() -> Result<()> {
let modules = _list_modules(defs::MODULE_DIR);
println!("{}", serde_json::to_string_pretty(&modules)?);