ethereal_rust_sdk 0.1.22

Trading client for Ethereal exchange
Documentation
use crate::{
    apis::{
        configuration::Configuration,
        rate_limit_api::{rate_limit_controller_get_config, RateLimitControllerGetConfigError},
        Error,
    },
    models::RateLimitConfigResponseDto,
};
pub struct RateLimitClient<'a> {
    pub config: &'a Configuration,
}

impl<'a> RateLimitClient<'a> {
    pub async fn get_config(
        &self,
    ) -> Result<RateLimitConfigResponseDto, Error<RateLimitControllerGetConfigError>> {
        rate_limit_controller_get_config(self.config).await
    }
}