feat: unlock test page

This commit is contained in:
wonfen
2025-03-16 12:15:35 +08:00
parent 36142656a4
commit bcaafa67a3
11 changed files with 7698 additions and 3 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -6,6 +6,7 @@ pub type CmdResult<T = ()> = Result<T, String>;
// Command modules
pub mod app;
pub mod clash;
pub mod media_unlock_checker;
pub mod network;
pub mod profile;
pub mod proxy;
@@ -20,6 +21,7 @@ pub mod webdav;
// Re-export all command functions for backwards compatibility
pub use app::*;
pub use clash::*;
pub use media_unlock_checker::*;
pub use network::*;
pub use profile::*;
pub use proxy::*;

View File

@@ -209,6 +209,9 @@ pub fn run() {
cmd::export_diagnostic_info,
// get system info for display
cmd::get_system_info,
// media unlock checker
cmd::get_unlock_items,
cmd::check_media_unlock,
]);
#[cfg(debug_assertions)]