mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-09 00:58:34 +08:00
feat(router): Add new JWT authentication variants and use them (#2835)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
@ -2,6 +2,8 @@ pub mod api_error_response;
|
||||
pub mod customers_error_response;
|
||||
pub mod error_handlers;
|
||||
pub mod transformers;
|
||||
#[cfg(feature = "olap")]
|
||||
pub mod user;
|
||||
pub mod utils;
|
||||
|
||||
use std::fmt::Display;
|
||||
@ -13,6 +15,8 @@ use diesel_models::errors as storage_errors;
|
||||
pub use redis_interface::errors::RedisError;
|
||||
use scheduler::errors as sch_errors;
|
||||
use storage_impl::errors as storage_impl_errors;
|
||||
#[cfg(feature = "olap")]
|
||||
pub use user::*;
|
||||
|
||||
pub use self::{
|
||||
api_error_response::ApiErrorResponse,
|
||||
|
||||
Reference in New Issue
Block a user