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::history::print_history;

pub fn run(config: &Config, show_all: bool, print_id: bool) {
    print_history(config, show_all, print_id);
}