(feat) added handler
This commit is contained in:
parent
5b3c2d4ec7
commit
de7c0f7110
8 changed files with 203 additions and 32 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue