Files
pomodoro-timer/src/main.rs
Wesley Irvin 1a94332ef8 Moving Workflow
Moving all work over to staging to accomodate workflow going forward.

Reviewed-on: #4
2025-09-11 17:39:20 -04:00

9 lines
117 B
Rust

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