rustvil 0.2.0

Rustvil, a collection of various Rust utilities
Documentation
1
2
3
4
5
6
7
8
use std::{env::home_dir, path::PathBuf};

pub mod xdg;

/// Wrapper around [`std::env::home_dir`].
pub fn home() -> Option<PathBuf> {
    home_dir()
}