]> git.proxmox.com Git - proxmox-backup.git/blame - src/client.rs
src/client/backup_specification.rs: split code into extra file
[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
38294bcc 6pub mod pipe_to_stream;
aa1b2e04 7mod merge_known_chunks;
e3dbd41b 8
151c6ce2
DM
9mod http_client;
10pub use http_client::*;
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 26
8968258b
DM
27mod pxar_decode_writer;
28pub use pxar_decode_writer::*;
e9c9409a 29
151c6ce2
DM
30mod backup_repo;
31pub use backup_repo::*;
07ad6470 32
7cc3473a
DM
33mod backup_specification;
34pub use backup_specification::*;
35
07ad6470 36pub mod pull;