1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! # ttrackr
//!
//! `ttrackr` is a command line app for tracking time spent on working on tasks.

#[macro_use]
extern crate diesel;
#[macro_use]
extern crate diesel_migrations;

pub mod cli;
pub mod config;
pub mod db;
pub mod utils;