]> git.proxmox.com Git - proxmox-backup.git/commitdiff
rest server: cleanup use statements
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 2 Oct 2020 11:04:08 +0000 (13:04 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Fri, 2 Oct 2020 11:04:08 +0000 (13:04 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
src/server/rest.rs

index 5577116b901842feb528a3c07fea2552d8fe19fe..feb0b4628daeae21cada3dfb2bfcbe64572b1968 100644 (file)
@@ -18,9 +18,20 @@ use tokio::time::Instant;
 use url::form_urlencoded;
 
 use proxmox::http_err;
-use proxmox::api::{ApiHandler, ApiMethod, HttpError};
-use proxmox::api::{RpcEnvironment, RpcEnvironmentType, check_api_permission};
-use proxmox::api::schema::{ObjectSchema, parse_simple_value, verify_json_object, parse_parameter_strings};
+use proxmox::api::{
+    ApiHandler,
+    ApiMethod,
+    HttpError,
+    RpcEnvironment,
+    RpcEnvironmentType,
+    check_api_permission,
+};
+use proxmox::api::schema::{
+    ObjectSchema,
+    parse_parameter_strings,
+    parse_simple_value,
+    verify_json_object,
+};
 
 use super::environment::RestEnvironment;
 use super::formatter::*;