Skip to main content

yookassa_rs/
lib.rs

1// Copyright (c) 2025 Oleg Pavlenko
2
3const BASE_URL: &str = "https://api.yookassa.ru/v3";
4
5mod error;
6mod client;
7mod auth;
8mod api;
9mod model;
10
11pub mod models {
12    pub use crate::model::*;
13}
14
15pub mod prelude {
16    pub use super::error::*;
17    pub use super::client::*;
18    pub use super::auth::*;
19}