openapi-sync 0.1.0

Rust implementation of a file synchronization tool for company SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod syncer;
pub mod task;

#[cfg(test)]
mod tests {
    use crate::syncer::Syncer;
    use crate::task::Task;

    #[test]
    fn test_syncer() {
        let syncer = Syncer::new();
        syncer.add_task(Task::new());
        syncer.start()
    }
}