]> git.proxmox.com Git - proxmox-backup.git/blobdiff - src/lib.rs
server: rest: refactor code to avoid multiple log_response calls
[proxmox-backup.git] / src / lib.rs
index 9bc6994a601c5a968cdf435296708a66aba69da4..c44c9ae195ed2f8301ade1316b324892d7093e18 100644 (file)
@@ -1,3 +1,5 @@
+pub mod task;
+
 #[macro_use]
 pub mod buildcfg;
 
@@ -5,42 +7,21 @@ pub mod buildcfg;
 pub mod tools;
 
 #[macro_use]
-pub mod api_schema;
-
-#[macro_use]
-pub mod server {
-
-    pub mod environment;
-    pub mod formatter;
-    #[macro_use]
-    pub mod rest;
+pub mod server;
 
-}
-
-pub mod catar;
-
-pub mod section_config;
+pub mod pxar;
 
+#[macro_use]
 pub mod backup;
 
 pub mod config;
 
-pub mod storage {
-
-    pub mod config;
-    pub mod futures;
-}
-
-pub mod cli {
-
-    pub mod environment;
-    pub mod command;
-}
-
-
 pub mod api2;
 
 pub mod client;
 
-pub mod getopts;
 pub mod auth_helpers;
+
+pub mod auth;
+
+pub mod rrd;