pub static MIN_TIMELINE_STEPS: usize = 10;
pub use structopt::StructOpt;
#[derive(StructOpt, Debug)]
#[structopt(
about = "Monitor Safe Network nodes in the terminal.\nNavigate using tab and arrow keys."
)]
pub struct Opt {
#[structopt(short = "l", long, default_value = "100")]
pub lines_max: usize,
#[structopt(long, default_value = "200")]
pub tick_rate: u64,
#[structopt(short, long, default_value = "210")]
pub timeline_steps: usize,
#[structopt(short, long)]
pub ignore_existing: bool,
#[structopt(name = "LOGFILE")]
pub files: Vec<String>,
#[structopt(short, long)]
pub debug_window: bool,
#[structopt(long)]
pub debug_dashboard: bool,
}