Del duplicates in code
This commit is contained in:
parent
7018adf98d
commit
f5f35855ce
@ -6,21 +6,15 @@ use {
|
||||
StatusCode,
|
||||
Request,
|
||||
header::HeaderValue,
|
||||
body::{
|
||||
Incoming,
|
||||
},
|
||||
body::Incoming,
|
||||
},
|
||||
serde_json::{
|
||||
Value as Json,
|
||||
json,
|
||||
},
|
||||
skytable::pool::ConnectionMgrTcp,
|
||||
bb8::Pool,
|
||||
std::sync::Arc,
|
||||
crate::DBPool,
|
||||
};
|
||||
|
||||
type DBPool = Arc<Pool<ConnectionMgrTcp>>;
|
||||
|
||||
|
||||
pub async fn endpoint(req: Request<Incoming>, pool: DBPool) -> (String, StatusCode, HeaderValue) {
|
||||
let uri: &str = req.uri().path().as_ref();
|
||||
|
@ -1,28 +1,20 @@
|
||||
use {
|
||||
hyper::{
|
||||
Request,
|
||||
body::{
|
||||
Incoming,
|
||||
},
|
||||
body::Incoming,
|
||||
},
|
||||
serde_json::{
|
||||
Value as Json,
|
||||
json,
|
||||
},
|
||||
skytable::{
|
||||
pool::ConnectionMgrTcp,
|
||||
query,
|
||||
},
|
||||
bb8::Pool,
|
||||
std::sync::Arc,
|
||||
skytable::query,
|
||||
crate::{
|
||||
DBPool,
|
||||
time,
|
||||
double_split,
|
||||
},
|
||||
};
|
||||
|
||||
type DBPool = Arc<Pool<ConnectionMgrTcp>>;
|
||||
|
||||
|
||||
pub async fn api(req: Request<Incoming>, pool: DBPool) -> Json {
|
||||
let uri: &str = req.uri().path().as_ref();
|
||||
|
@ -1,28 +1,20 @@
|
||||
use {
|
||||
hyper::{
|
||||
Request,
|
||||
body::{
|
||||
Incoming,
|
||||
},
|
||||
body::Incoming,
|
||||
},
|
||||
serde_json::{
|
||||
Value as Json,
|
||||
json,
|
||||
},
|
||||
skytable::{
|
||||
pool::ConnectionMgrTcp,
|
||||
query,
|
||||
},
|
||||
bb8::Pool,
|
||||
std::sync::Arc,
|
||||
skytable::query,
|
||||
crate::{
|
||||
DBPool,
|
||||
time,
|
||||
double_split,
|
||||
},
|
||||
};
|
||||
|
||||
type DBPool = Arc<Pool<ConnectionMgrTcp>>;
|
||||
|
||||
|
||||
pub async fn api(req: Request<Incoming>, pool: DBPool) -> Json {
|
||||
let uri: &str = req.uri().path().as_ref();
|
||||
|
Loading…
x
Reference in New Issue
Block a user