rest server: cleanup use statements
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
66bbd4200c
commit
4e6dc58727
|
@ -18,9 +18,20 @@ use tokio::time::Instant;
|
||||||
use url::form_urlencoded;
|
use url::form_urlencoded;
|
||||||
|
|
||||||
use proxmox::http_err;
|
use proxmox::http_err;
|
||||||
use proxmox::api::{ApiHandler, ApiMethod, HttpError};
|
use proxmox::api::{
|
||||||
use proxmox::api::{RpcEnvironment, RpcEnvironmentType, check_api_permission};
|
ApiHandler,
|
||||||
use proxmox::api::schema::{ObjectSchema, parse_simple_value, verify_json_object, parse_parameter_strings};
|
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::environment::RestEnvironment;
|
||||||
use super::formatter::*;
|
use super::formatter::*;
|
||||||
|
|
Loading…
Reference in New Issue