authy/api/
mod.rs

1//! This is the 'low level' bindings to the Authy service API.
2//!
3//! The intent is to provide a 1-to-1 mapping to the respective Authy endpoints.
4//! 
5//! Authy API documentation: https://www.twilio.com/docs/api/authy
6
7pub mod app;
8pub mod user;
9pub mod phone;
10pub mod onetouch;