mirror of
https://github.com/nushell/nushell
synced 2025-01-04 17:28:59 +00:00
9 lines
164 B
Rust
9 lines
164 B
Rust
use std::path::PathBuf;
|
|
|
|
pub fn home_dir() -> Option<PathBuf> {
|
|
dirs_next::home_dir()
|
|
}
|
|
|
|
pub fn config_dir() -> Option<PathBuf> {
|
|
dirs_next::config_dir()
|
|
}
|