chest-rs 0.2.0

A multiplatform CLI command organizer
Documentation
1
2
3
4
5
6
7
8
9
use crate::dirs;

pub fn run() {
    let db_path = dirs::db_path();
    let log_path = dirs::log_path();
    println!("Paths to important files:");
    println!("Database containing commands: {}", db_path.display());
    println!("Log file: {}", log_path.display());
}