drop unused imports of proxmox_sys::identity

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2021-12-16 11:09:38 +01:00
parent 48910f9b0a
commit ff6b6cd74d
2 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ use nix::unistd::{fork, ForkResult};
use serde_json::Value; use serde_json::Value;
use tokio::signal::unix::{signal, SignalKind}; use tokio::signal::unix::{signal, SignalKind};
use proxmox_sys::{sortable, identity}; use proxmox_sys::sortable;
use proxmox_sys::fd::Fd; use proxmox_sys::fd::Fd;
use proxmox_router::{ApiHandler, ApiMethod, RpcEnvironment, cli::*}; use proxmox_router::{ApiHandler, ApiMethod, RpcEnvironment, cli::*};
use proxmox_schema::*; use proxmox_schema::*;

View File

@ -20,7 +20,7 @@ use proxmox_router::{
use proxmox_schema::*; use proxmox_schema::*;
use proxmox_async::zip::zip_directory; use proxmox_async::zip::zip_directory;
use proxmox_sys::fs::read_subdir; use proxmox_sys::fs::read_subdir;
use proxmox_sys::{identity, sortable}; use proxmox_sys::sortable;
use pbs_api_types::file_restore::RestoreDaemonStatus; use pbs_api_types::file_restore::RestoreDaemonStatus;
use pbs_client::pxar::{create_archive, Flags, PxarCreateOptions, ENCODER_MAX_ENTRIES}; use pbs_client::pxar::{create_archive, Flags, PxarCreateOptions, ENCODER_MAX_ENTRIES};