Del duplicates in code

This commit is contained in:
BitHeaven 2024-07-15 08:43:36 +03:00
parent 7018adf98d
commit f5f35855ce
3 changed files with 8 additions and 30 deletions

View File

@ -6,21 +6,15 @@ use {
StatusCode, StatusCode,
Request, Request,
header::HeaderValue, header::HeaderValue,
body::{ body::Incoming,
Incoming,
},
}, },
serde_json::{ serde_json::{
Value as Json, Value as Json,
json, json,
}, },
skytable::pool::ConnectionMgrTcp, crate::DBPool,
bb8::Pool,
std::sync::Arc,
}; };
type DBPool = Arc<Pool<ConnectionMgrTcp>>;
pub async fn endpoint(req: Request<Incoming>, pool: DBPool) -> (String, StatusCode, HeaderValue) { pub async fn endpoint(req: Request<Incoming>, pool: DBPool) -> (String, StatusCode, HeaderValue) {
let uri: &str = req.uri().path().as_ref(); let uri: &str = req.uri().path().as_ref();

View File

@ -1,28 +1,20 @@
use { use {
hyper::{ hyper::{
Request, Request,
body::{ body::Incoming,
Incoming,
},
}, },
serde_json::{ serde_json::{
Value as Json, Value as Json,
json, json,
}, },
skytable::{ skytable::query,
pool::ConnectionMgrTcp,
query,
},
bb8::Pool,
std::sync::Arc,
crate::{ crate::{
DBPool,
time, time,
double_split, double_split,
}, },
}; };
type DBPool = Arc<Pool<ConnectionMgrTcp>>;
pub async fn api(req: Request<Incoming>, pool: DBPool) -> Json { pub async fn api(req: Request<Incoming>, pool: DBPool) -> Json {
let uri: &str = req.uri().path().as_ref(); let uri: &str = req.uri().path().as_ref();

View File

@ -1,28 +1,20 @@
use { use {
hyper::{ hyper::{
Request, Request,
body::{ body::Incoming,
Incoming,
},
}, },
serde_json::{ serde_json::{
Value as Json, Value as Json,
json, json,
}, },
skytable::{ skytable::query,
pool::ConnectionMgrTcp,
query,
},
bb8::Pool,
std::sync::Arc,
crate::{ crate::{
DBPool,
time, time,
double_split, double_split,
}, },
}; };
type DBPool = Arc<Pool<ConnectionMgrTcp>>;
pub async fn api(req: Request<Incoming>, pool: DBPool) -> Json { pub async fn api(req: Request<Incoming>, pool: DBPool) -> Json {
let uri: &str = req.uri().path().as_ref(); let uri: &str = req.uri().path().as_ref();