Skip to main content

zenmoney_rs/
lib.rs

1//! Rust client library for the `ZenMoney` API.
2//!
3//! This crate provides a typed client for interacting with the
4//! [ZenMoney](https://zenmoney.ru/) personal finance API.
5
6#[cfg(any(feature = "async", feature = "blocking"))]
7pub mod client;
8pub mod error;
9pub mod models;
10#[cfg(any(feature = "async", feature = "blocking"))]
11pub mod storage;
12#[cfg(any(feature = "async", feature = "blocking"))]
13pub mod zen_money;