]> git.proxmox.com Git - proxmox-backup.git/blob - src/client.rs
src/catar/decoder.rs: implement real sequential decoder (no Seek)
[proxmox-backup.git] / src / client.rs
1 //! Client side interface to the proxmox backup server
2 //!
3 //! This library implements the client side to access the backups
4 //! server using https.
5
6 mod http_client;
7 pub use http_client::*;
8
9 mod catar_backup_stream;
10 pub use catar_backup_stream::*;
11
12 mod catar_decode_writer;
13 pub use catar_decode_writer::*;
14
15 mod backup_repo;
16 pub use backup_repo::*;