Skip to main content

smcp_computer/desktop/
mod.rs

1/*!
2* 文件名: mod.rs
3* 作者: JQQ
4* 创建日期: 2025/12/16
5* 最后修改日期: 2025/12/18
6* 版权: 2023 JQQ. All rights reserved.
7* 依赖: serde
8* 描述: Desktop模块入口 / Desktop module entry point
9*/
10
11pub mod model;
12pub mod organize;
13pub mod window_uri;
14
15pub use model::*;
16pub use organize::*;
17// Re-export window_uri types with explicit names to avoid conflicts
18pub use window_uri::{
19    is_window_uri, WindowURI as WindowURIWrapper, WindowURIError as WindowURIErrorWrapper,
20};
21
22/// 桌面内容类型 / Desktop content type
23pub type Desktop = String;