mirror of
https://github.com/nushell/nushell.git
synced 2025-04-17 09:48:19 +02: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()
|
|
}
|