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