]> git.proxmox.com Git - proxmox-backup.git/blame - src/client.rs
ui: allow one to delete the description
[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
aa1b2e04 6mod merge_known_chunks;
c443f58b 7pub mod pipe_to_stream;
e3dbd41b 8
151c6ce2 9mod http_client;
c443f58b 10pub use http_client::*;
151c6ce2 11
5a0b484b
DM
12mod task_log;
13pub use task_log::*;
14
9e490a74
DM
15mod backup_reader;
16pub use backup_reader::*;
17
cf9271e2
DM
18mod backup_writer;
19pub use backup_writer::*;
20
7f99bf69
DM
21mod remote_chunk_reader;
22pub use remote_chunk_reader::*;
23
8968258b
DM
24mod pxar_backup_stream;
25pub use pxar_backup_stream::*;
151c6ce2
DM
26
27mod backup_repo;
28pub use backup_repo::*;
07ad6470 29
7cc3473a
DM
30mod backup_specification;
31pub use backup_specification::*;
32
07ad6470 33pub mod pull;