(feat) added handler

This commit is contained in:
Rorik Star Platinum 2025-11-05 17:30:50 +03:00
parent 5b3c2d4ec7
commit de7c0f7110
8 changed files with 203 additions and 32 deletions

View file

@ -1,4 +1,8 @@
// src/api.rs
// Объявляет клиенты для работы с внешними API
// This file is the public-facing module for all external API interactions.
pub mod banking; // Наш HTTP клиент к банковским API
// Make the banking submodule public.
pub mod banking;
// Re-export the primary client struct so other modules can use it via `crate::api::*`.
pub use banking::BankingClients;