lmstfy_client/
lib.rs

1//! # rust client for lmstfy
2//!
3//! An api wrapper for communicating with lmstfy server
4
5mod retrier;
6
7pub mod api;
8pub mod errors;
9
10#[cfg(test)]
11mod api_test;