1 2 3 4 5
use std::{env, io, path::PathBuf}; pub fn cwd() -> io::Result<PathBuf> { env::current_dir() }