proxmox-backup/src/client.rs
Dietmar Maurer aa1b2e04fe src/client/merge_known_chunks.rs: merge known chunks
To decrease the number of api calls required...
2019-05-23 12:31:09 +02:00

20 lines
391 B
Rust

//! Client side interface to the proxmox backup server
//!
//! This library implements the client side to access the backups
//! server using https.
mod pipe_to_stream;
mod merge_known_chunks;
mod http_client;
pub use http_client::*;
mod pxar_backup_stream;
pub use pxar_backup_stream::*;
mod pxar_decode_writer;
pub use pxar_decode_writer::*;
mod backup_repo;
pub use backup_repo::*;