1 2 3 4 5 6 7 8 9 10
use std::{ io, path::{Path, PathBuf}, }; use super::opfs::virtualize; pub async fn canonicalize(path: impl AsRef<Path>) -> io::Result<PathBuf> { virtualize(path) }