aranet-tui 0.2.0

Terminal UI dashboard for Aranet environmental sensors (standalone binary)
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Standalone TUI binary for Aranet sensors.
//!
//! This is a thin wrapper around aranet-cli's TUI functionality,
//! providing a separate binary for users who only want the dashboard.

use anyhow::Result;

#[tokio::main]
async fn main() -> Result<()> {
    aranet_cli::tui::run().await
}