funpay-client 0.2.3

Unofficial async client for FunPay marketplace - chats, orders, offers polling
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod client;
pub mod config;
pub mod error;
pub mod events;
pub mod models;
pub mod parsing;
pub mod storage;
pub mod utils;

pub use client::account::{FunPayAccount, FunPaySender};
pub use client::http::ReqwestGateway;
pub use client::FunpayGateway;
pub use config::{FunPayConfig, FunPayConfigBuilder};
pub use error::FunPayError;
pub use events::Event;
pub use storage::StateStorage;