Del duplicates in code
This commit is contained in:
parent
7018adf98d
commit
f5f35855ce
@ -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();
|
||||||
|
@ -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();
|
||||||
|
@ -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();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user