Reorder imports.

Trying to separate:
1. Stuff for handling the swarm of nodes and generic table data replication
2. Stuff for the object store core application: metadata tables and block management
3. Stuff for the S3 API
This commit is contained in:
Alex Auvolat
2020-04-18 19:39:08 +02:00
parent bd1618e78e
commit 4ba54ccfca
7 changed files with 18 additions and 11 deletions
+2 -2
View File
@@ -12,12 +12,12 @@ use hyper::client::{Client, HttpConnector};
use hyper::{Body, Method, Request, StatusCode};
use tokio::sync::watch;
use crate::background::*;
use crate::background::BackgroundRunner;
use crate::data::*;
use crate::error::Error;
use crate::membership::Status;
use crate::rpc_server::RpcMessage;
use crate::server::*;
use crate::server::TlsConfig;
use crate::tls_util;
pub struct RpcClient<M: RpcMessage> {