Moving Workflow

Moving all work over to staging to accomodate workflow going forward.

Reviewed-on: #4
This commit was merged in pull request #4.
This commit is contained in:
2025-09-11 17:39:20 -04:00
parent c9a968e1cf
commit 1a94332ef8
8 changed files with 984 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(())
}