ptimer 0.1.0

A simple cli pomodoro timer. It sends notifications to the user when the timer is up. Works on macOS only.
Documentation
1
2
3
4
5
6
use crate::config::Config;
use crate::db::delete_history;

pub fn run(config: &Config, id: u32) {
    delete_history(config, id).unwrap();
}