mirror of
https://github.com/sharkdp/bat.git
synced 2025-02-01 10:41:17 +00:00
7 lines
184 B
Rust
7 lines
184 B
Rust
|
use directories::ProjectDirs;
|
||
|
|
||
|
lazy_static! {
|
||
|
pub static ref PROJECT_DIRS: ProjectDirs =
|
||
|
ProjectDirs::from("", "", crate_name!()).expect("Could not get home directory");
|
||
|
}
|