discord_rust_framework 0.0.1

A very high-level library for creating simple bots for Discord.
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate serde;
extern crate serde_json;

#[derive(Serialize, Deserialize, Debug)]
pub struct Hello {
    pub heartbeat_interval: i32,
    pub _trace: Vec<String>,
}

impl super::MessageData for Hello { }