analyticord 0.1.2

Simple wrapper around the Analyticord API.
Documentation
1
2
3
4
5
6
7
8
9
/// Struct representing the data you get from submitting valid analytics data.
#[derive(Deserialize, Debug)]
pub struct SubmitData {
    /// The status returned, usually `ok`.
    pub status: String,
    /// The id, used for verification purposes.
    #[serde(rename = "ID")]
    pub id: String,
}