mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-02 04:04:43 +08:00
chore: address Rust 1.78 clippy lints (#4545)
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
This commit is contained in:
@ -114,7 +114,7 @@ pub mod routes {
|
||||
pub async fn get_info(
|
||||
state: web::Data<AppState>,
|
||||
req: actix_web::HttpRequest,
|
||||
domain: actix_web::web::Path<analytics::AnalyticsDomain>,
|
||||
domain: web::Path<analytics::AnalyticsDomain>,
|
||||
) -> impl Responder {
|
||||
let flow = AnalyticsFlow::GetInfo;
|
||||
Box::pin(api::server_wrap(
|
||||
@ -631,7 +631,7 @@ pub mod routes {
|
||||
state: web::Data<AppState>,
|
||||
req: actix_web::HttpRequest,
|
||||
json_payload: web::Json<GetSearchRequest>,
|
||||
index: actix_web::web::Path<SearchIndex>,
|
||||
index: web::Path<SearchIndex>,
|
||||
) -> impl Responder {
|
||||
let flow = AnalyticsFlow::GetSearchResults;
|
||||
let indexed_req = GetSearchRequestWithIndex {
|
||||
|
||||
Reference in New Issue
Block a user