mirror of
https://github.com/nushell/nushell.git
synced 2025-01-11 08:48:23 +01:00
10 lines
164 B
Rust
10 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()
|
|
}
|