1//! # ttrackr
2//!
3//! `ttrackr` is a command line app for tracking time spent on working on tasks.
45#[macro_use]
6extern crate diesel;
7#[macro_use]
8extern crate diesel_migrations;
910pub mod cli;
11pub mod config;
12pub mod db;
13pub mod utils;