Skip to main content

smcp_computer/
lib.rs

1/*!
2* 文件名: lib.rs
3* 作者: JQQ
4* 创建日期: 2025/12/15
5* 最后修改日期: 2025/12/15
6* 版权: 2023 JQQ. All rights reserved.
7* 依赖: None
8* 描述: A2C-SMCP Computer模块的Rust实现 / Rust implementation of A2C-SMCP Computer module
9*/
10
11pub mod computer;
12pub mod desktop;
13pub mod errors;
14pub mod inputs;
15pub mod mcp_clients;
16pub mod socketio_client;
17
18#[cfg(feature = "cli")]
19pub mod cli;
20
21#[cfg(test)]
22pub use errors::{ComputerError, ComputerResult};
23
24/// Computer模块的版本号 / Version of the Computer module
25pub const VERSION: &str = env!("CARGO_PKG_VERSION");