| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Rename the `http` module to `rest` | Austin Hellyer | 2016-11-25 | 1 | -2/+2 |
| | | |||||
| * | Add send_message rich embeds | Austin Hellyer | 2016-11-15 | 1 | -3/+23 |
| | | |||||
| * | Add a message builder for Context::send_message | Austin Hellyer | 2016-11-15 | 1 | -0/+71 |
| Add a message builder to `send_message`. Often only one field - i.e. `content` - needs to be specified, and the rest can be ignored. This is a preliminary patch to add rich embed support to messages. This message builder is used via: ```rust // assuming in a context with a `channel_id` bound context.send_message(channel_id, |m| m .content("TTS ping!") .tts(true)); ``` | |||||