defillama_rs/lib.rs
1//! A Rust client for the DefiLlama API
2//!
3//! This crate provides an interface to interact with DefiLlama's API,
4//! allowing users to fetch data such as token prices, TVL, and more.
5
6pub mod client;
7pub mod error;
8pub mod models;
9
10pub use client::DefiLlamaClient;
11pub use error::DefillamaError;