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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Bundled archival CLI — only compiled when the `cli` feature is enabled.
//!
//! This is the merged-in `discord-cli` binary tree. It re-uses the parent
//! crate's HTTP client (`crate::client::DiscordHttpClient`) and route table
//! (`crate::route::Route`) for read-only access, plus the gateway re-export
//! (`crate::DiscordUser`) for `dc tail`. All other modules here are CLI-only
//! and never compiled into the published library.

pub mod api;
pub mod args;
pub mod auth;
pub mod commands;
pub mod config;
pub mod db;
pub mod output;
pub mod types;