Files
rustytorch/demos/digital-twin-shared/src/lib.rs
T
2026-03-04 00:08:42 +00:00

16 lines
332 B
Rust

//! Shared types for Digital Twin demo IPC.
//!
//! This crate provides shared types for communication between
//! the Tauri backend and the frontend for the Medical Digital Twin demo.
#![forbid(unsafe_code)]
#![warn(missing_docs)]
pub mod config;
pub mod error;
pub mod ipc;
pub use config::*;
pub use error::*;
pub use ipc::*;