discord-user-rs 0.4.1

Discord self-bot client library — user-token WebSocket gateway and REST API, with optional read-only archival CLI
Documentation
//! Operations module - provides specialized operation traits for DiscordUser
//!
//! This module splits the DiscordUser operations into focused, maintainable
//! modules:
//! - `message` - Message sending, editing, deleting, and reactions
//! - `relationship` - Friend requests and relationship management
//! - `guild` - Guild roles, invites, members, and stickers
//! - `channel` - DM channels, voice status, and channel/guild info
//! - `status` - User presence and custom status

mod application;
mod automod;
mod channel;
mod entitlement;
mod guild;
mod lobby;
mod message;
mod relationship;
mod role_connection;
mod scheduled_event;
mod sku;
mod slash_command;
mod soundboard;
mod stage;
mod status;
mod subscription;
mod thread;
mod voice;
mod webhook;

pub use application::*;
pub use automod::*;
pub use channel::*;
pub use entitlement::*;
pub use guild::*;
pub use lobby::*;
pub use message::*;
pub use relationship::*;
pub use role_connection::*;
pub use scheduled_event::*;
pub use sku::*;
pub use slash_command::*;
pub use soundboard::*;
pub use stage::*;
pub use status::*;
pub use subscription::*;
pub use thread::*;
pub use voice::*;
pub use webhook::*;