16 lines
332 B
Rust
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::*;
|