refactor: incorporate hyperswitch_interface into router (#3669)

Co-authored-by: Narayan Bhat <narayan.bhat@juspay.in>
This commit is contained in:
Chethan Rao
2024-02-26 19:18:18 +05:30
committed by GitHub
parent c117f8ec63
commit 2185cd38c1
48 changed files with 671 additions and 1613 deletions

View File

@ -17,8 +17,7 @@ async fn main() -> DrainerResult<()> {
let state = settings::AppState::new(conf.clone()).await;
let store = services::Store::new(&state.conf, false).await;
let store = std::sync::Arc::new(store);
let store = std::sync::Arc::new(services::Store::new(&state.conf, false).await);
#[cfg(feature = "vergen")]
println!("Starting drainer (Version: {})", router_env::git_tag!());