Add version check system

This commit is contained in:
2022-10-18 08:58:36 +02:00
parent 915426849b
commit eea2ecbf63
23 changed files with 204 additions and 26 deletions

View File

@@ -0,0 +1,6 @@
use std::time::Duration;
use tui::style::Color;
pub const TICK_RATE: Duration = Duration::from_millis(250);
pub const HIGHLIGHT_COLOR: Color = Color::Green;