thoughts 3.2.0

A simple cli for recording down any random thoughts you may have :D
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod log;
pub mod database;
pub mod thought;
pub mod cli;
pub mod session;
pub mod port;

pub fn get_dir() -> std::path::PathBuf {
    home::home_dir()
        .expect("could not find home directory")
        .join(".thoughts-cli")
}