]> git.proxmox.com Git - proxmox-backup.git/blame - src/client.rs
src/api2/admin/datastore.rs: use a worker log log prune actions
[proxmox-backup.git] / src / client.rs
CommitLineData
151c6ce2
DM
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
e3dbd41b 6mod pipe_to_stream;
aa1b2e04 7mod merge_known_chunks;
e3dbd41b 8
151c6ce2
DM
9mod http_client;
10pub use http_client::*;
11
8968258b
DM
12mod pxar_backup_stream;
13pub use pxar_backup_stream::*;
151c6ce2 14
8968258b
DM
15mod pxar_decode_writer;
16pub use pxar_decode_writer::*;
e9c9409a 17
151c6ce2
DM
18mod backup_repo;
19pub use backup_repo::*;