Skip to main content

twilight_util/builder/
mod.rs

1//! Builders for large structs.
2#![expect(clippy::missing_const_for_fn)]
3
4pub mod command;
5pub mod embed;
6pub mod interaction_response;
7pub mod message;
8
9mod interaction_response_data;
10
11#[allow(deprecated)]
12pub use self::interaction_response_data::InteractionResponseDataBuilder;