bitrouter-tui 0.18.3

Terminal UI for BitRouter — agent session manager
Documentation
1
2
3
4
5
6
7
8
9
10
use std::net::SocketAddr;

/// Configuration passed from the binary to the TUI.
#[derive(Debug, Clone)]
pub struct TuiConfig {
    pub listen_addr: SocketAddr,
    pub providers: Vec<String>,
    pub route_count: usize,
    pub daemon_pid: Option<u32>,
}