]> git.proxmox.com Git - proxmox-backup.git/blame - src/client.rs
src/client.rs: improve library structure and docu
[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
6mod http_client;
7pub use http_client::*;
8
9mod catar_backup_stream;
10pub use catar_backup_stream::*;
11
12mod backup_repo;
13pub use backup_repo::*;