hyperlog/crates/hyperlog-tui/src/project_dirs.rs

6 lines
166 B
Rust
Raw Normal View History

use directories::ProjectDirs;
pub fn get_project_dir() -> ProjectDirs {
ProjectDirs::from("io", "kjuulh", "hyperlog").expect("to be able to get project dirs")
}