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
use crate::config::Config;

mod cli;
mod cmd;
mod config;
mod db;
mod grpc;
mod history;
mod notification;
mod state;

pub mod timer_grpc {
    #![allow(clippy::all, clippy::pedantic, clippy::nursery)]
    tonic::include_proto!("timer");
}

pub fn run() {
    let config = Config::new();
    cli::run(&config);
}