blooio 0.1.0

Typed, low-overhead Rust client for the Blooio API (iMessage/SMS automation), with sync and async surfaces.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! The two thin IO executors. Everything else in the crate is sans-IO.

#[cfg(feature = "async")]
mod asynchronous;
#[cfg(feature = "sync")]
mod blocking;

#[cfg(feature = "async")]
pub use asynchronous::Client;
#[cfg(feature = "sync")]
pub use blocking::BlockingClient;