tokio_fs_ext/fs/wasm/
remove_file.rs

1use std::{io, path::Path};
2
3use super::opfs::remove;
4
5pub async fn remove_file(path: impl AsRef<Path>) -> io::Result<()> {
6    remove(path, false).await
7}