mirror of
https://github.com/Yuyi-Oak/BlueArchiveToolkit.git
synced 2026-07-22 05:46:45 +08:00
12 lines
245 B
Rust
12 lines
245 B
Rust
//! 客户端集成模块
|
|
//!
|
|
//! 提供客户端发现、备份和集成功能
|
|
|
|
pub mod backup;
|
|
pub mod discovery;
|
|
pub mod integration;
|
|
|
|
pub use backup::BackupManager;
|
|
pub use discovery::ClientDiscovery;
|
|
pub use integration::ClientIntegration;
|