Files
pomodoro-timer/src/main.rs
Wesley Irvin db5937664c Basic UI
Created a basic block layout for the main UI screen.
2025-09-09 18:43:21 -04:00

9 lines
117 B
Rust

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