]> git.proxmox.com Git - proxmox-backup.git/blobdiff - src/client.rs
ui: allow one to delete the description
[proxmox-backup.git] / src / client.rs
index cccdcee33c9984f1d27028e64e4901820682ee94..3fb01f8a33eeb660b3387a7e2a27fd9e07c9e50b 100644 (file)
@@ -3,11 +3,20 @@
 //! This library implements the client side to access the backups
 //! server using https.
 
-pub mod pipe_to_stream;
 mod merge_known_chunks;
+pub mod pipe_to_stream;
 
 mod http_client;
-pub use  http_client::*;
+pub use http_client::*;
+
+mod task_log;
+pub use task_log::*;
+
+mod backup_reader;
+pub use backup_reader::*;
+
+mod backup_writer;
+pub use backup_writer::*;
 
 mod remote_chunk_reader;
 pub use remote_chunk_reader::*;
@@ -15,8 +24,10 @@ pub use remote_chunk_reader::*;
 mod pxar_backup_stream;
 pub use pxar_backup_stream::*;
 
-mod pxar_decode_writer;
-pub use pxar_decode_writer::*;
-
 mod backup_repo;
 pub use backup_repo::*;
+
+mod backup_specification;
+pub use backup_specification::*;
+
+pub mod pull;