tempomat 0.3.0

Minimal Tempo+Jira time logging CLI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use directories::ProjectDirs;

pub mod args;
pub mod config;
pub mod error;
pub mod git;
pub mod jira;
pub mod tempo;
pub mod time;
pub mod timers;

pub fn dirs() -> Result<ProjectDirs, error::TempomatError> {
    ProjectDirs::from("de", "maxicarlos", "tempomat").ok_or(error::TempomatError::NoProjectDirs)
}