Migrate updater LAN and devkit features from old repo
This commit is contained in:
13
src-tauri/src/devkit/mod.rs
Normal file
13
src-tauri/src/devkit/mod.rs
Normal file
@@ -0,0 +1,13 @@
|
||||
//! Develop Kit 模块
|
||||
//!
|
||||
//! 仅在 `devkit` feature 启用时编译。
|
||||
//! Rust 端作为 gRPC client,将传感器压力矩阵数据实时推送给 Python gRPC server。
|
||||
|
||||
mod client;
|
||||
|
||||
pub use client::{DevKitConfig, DevKitState, DevKitStatusSnapshot, ExportProcessResult};
|
||||
|
||||
// 导入 tonic 生成的 gRPC 代码
|
||||
pub mod proto {
|
||||
tonic::include_proto!("sensor_stream");
|
||||
}
|
||||
Reference in New Issue
Block a user