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,
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();

View File

@ -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();

View File

@ -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();