corund_lib/ryz/
path.rs

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