sendblue 0.5.0

SendBlue is a Rust library that provides an API client for interacting with the SendBlue REST API, enabling businesses to integrate iMessage and SMS services into their applications.
1
2
3
4
5
6
7
8
9
//! Traits for the Sendblue API
//!
//! This module provides traits used by various models in the Sendblue API.

pub mod sendable_message;
pub mod url;

pub use sendable_message::SendableMessage;
pub use url::Url;