aranet_cli/tui/messages.rs
1//! Message types for TUI communication between UI and worker threads.
2//!
3//! This module re-exports the shared message types from `aranet-core::messages`.
4//! These types are used for bidirectional communication in both TUI and GUI applications:
5//!
6//! - [`Command`]: Messages sent from the UI thread to the background worker
7//! - [`SensorEvent`]: Events sent from the worker back to the UI thread
8
9pub use aranet_core::messages::{CachedDevice, Command, SensorEvent};