hyperlog/crates/hyperlog-tui/src/project_dirs.rs
kjuulh 20190ac784
All checks were successful
continuous-integration/drone/push Build is passing
feat: add markdown editing mode
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-06-30 17:31:25 +02:00

6 lines
166 B
Rust

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