tokio_fs/os/windows/
mod.rs

1//! Windows-specific extensions for the primitives in the `tokio_fs` module.
2
3mod symlink_dir;
4mod symlink_file;
5
6pub use self::symlink_dir::{symlink_dir, SymlinkDirFuture};
7pub use self::symlink_file::{symlink_file, SymlinkFileFuture};