refactor: extract constants

This commit is contained in:
Stevan Freeborn
2026-07-28 10:20:37 -05:00
parent a62f54e85b
commit 15e0fd9d08
5 changed files with 69 additions and 40 deletions
+4
View File
@@ -0,0 +1,4 @@
pub const SECONDS_PER_MIN: u32 = 60;
pub const DEFAULT_WORK_MINS: u32 = 25;
pub const DEFAULT_BREAK_MINS: u32 = 5;
pub const VIZ_NUM_BARS: u16 = 64;