Skip to main content

flare_core/server/device/
mod.rs

1//! 服务端设备管理模块
2//!
3//! 提供设备冲突检测、设备在线管理等功能
4
5pub mod manager;
6pub mod strategy;
7
8pub use manager::DeviceManager;
9pub use strategy::{DeviceConflictStrategy, DeviceConflictStrategyBuilder};