From c710ff542712d9cee781d1fa8d704a9639f2578b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Thu, 30 Jan 2025 13:18:25 +0100 Subject: [PATCH] restore: sort use statements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit pbs_api_types is one of our crates, so sort it like in the other modules.. Signed-off-by: Fabian Grünbichler --- src/restore.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/restore.rs b/src/restore.rs index a879b99..5a5a398 100644 --- a/src/restore.rs +++ b/src/restore.rs @@ -3,11 +3,11 @@ use std::sync::{Arc, Mutex}; use anyhow::{bail, format_err, Error}; use once_cell::sync::OnceCell; -use pbs_api_types::BackupArchiveName; use tokio::runtime::Runtime; use proxmox_async::runtime::get_runtime_with_builder; +use pbs_api_types::BackupArchiveName; use pbs_client::{BackupReader, HttpClient, HttpClientOptions, RemoteChunkReader}; use pbs_datastore::cached_chunk_reader::CachedChunkReader; use pbs_datastore::data_blob::DataChunkBuilder;