file_operation/
lib.rs

1
2
3
4
5
6
7
8
9
10
pub(crate) mod file;

pub use file::{
    copy::{r#async::*, sync::*},
    delete::{r#async::*, sync::*},
    r#move::{r#async::*, sync::*},
    r#type::*,
    read::{r#async::*, sync::*},
    write::{r#async::*, sync::*},
};