mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-11-02 12:06:56 +08:00
fix(router): feature gate openssl deps for basilisk feature (#536)
This commit is contained in:
@ -1,11 +1,14 @@
|
||||
pub mod api;
|
||||
pub mod authentication;
|
||||
#[cfg(feature = "basilisk")]
|
||||
pub mod encryption;
|
||||
pub mod logger;
|
||||
|
||||
use std::sync::Arc;
|
||||
|
||||
pub use self::{api::*, encryption::*};
|
||||
pub use self::api::*;
|
||||
#[cfg(feature = "basilisk")]
|
||||
pub use self::encryption::*;
|
||||
use crate::connection::{diesel_make_pg_pool, PgPool};
|
||||
|
||||
#[derive(Clone)]
|
||||
|
||||
Reference in New Issue
Block a user