Created a basic block layout for the main UI screen.
This commit is contained in:
2025-09-09 18:43:21 -04:00
parent c9a968e1cf
commit db5937664c
8 changed files with 954 additions and 0 deletions

8
src/main.rs Normal file
View File

@@ -0,0 +1,8 @@
use pomodoro_timer::run;
use std::error::Error;
fn main() -> Result<(), Box<dyn Error>> {
run()?;
Ok(())
}