10 lines
235 B
Rust
10 lines
235 B
Rust
// src/api.rs
|
|
|
|
pub mod client;
|
|
pub mod models;
|
|
pub mod consents;
|
|
pub mod accounts;
|
|
pub mod transactions;
|
|
|
|
pub use client::{BankingError, BankingClients};
|
|
// pub use models::{ApiResponse, AccountData, TransactionData, ConsentResponse};
|