mzrs-sdk 0.1.21

High-level Rust SDK for Mezon platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Fluent builders for messages, rich text, embeds, and interactive components.

pub mod components;
pub mod embed;
pub mod message;
pub mod rich_text;

pub use components::{ActionRow, ButtonStyle, ComponentType, SelectOption};
pub use embed::{Embed, EmbedAuthor, EmbedField, EmbedFooter, EmbedImage};
pub use message::{MessageBuilder, MessageContent, PreparedContent};
pub use rich_text::RichText;