topstats 0.1.0

Rust SDK for the TopStats.gg API - Discord bot statistics tracking
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Data models for the `TopStats` API.
//!
//! This module contains all the types used to represent data from the `TopStats` API,
//! including bots, historical data, rankings, and more.

mod bot;
mod historical;
mod rankings;
mod recent;
pub(crate) mod snowflake;
mod user;

pub use bot::*;
pub use historical::*;
pub use rankings::*;
pub use recent::*;
pub use user::*;