All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: kjuulh <contact@kjuulh.io>
6 lines
166 B
Rust
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")
|
|
}
|