discord-ferris 0.0.2

discord-ferris is a Discord API Rust library under development 🦀
Documentation
1
2
3
4
5
6
7
use crate::models::payloads::{APIGatewayBotInfo, APIGatewayInfo};

/// @see {@link https://discord.com/developers/docs/topics/gateway#get-gateway}
pub type RESTGetAPIGatewayResult = APIGatewayInfo;

/// @see {@link https://discord.com/developers/docs/topics/gateway#get-gateway-bot}
pub type RESTGetAPIGatewayBotResult = APIGatewayBotInfo;