path_end/
lib.rs

1pub fn path_end(dir: impl AsRef<str>) -> String {
2  let dir = dir.as_ref();
3  format!("{dir}{}", std::path::MAIN_SEPARATOR)
4}