aboutsummaryrefslogtreecommitdiff
path: root/src/utils/builder/create_embed.rs
Commit message (Collapse)AuthorAgeFilesLines
* Clean up the codebaseAustin Hellyer2016-11-291-36/+0
|
* Ensure embed fields are inline by defaultAustin Hellyer2016-11-231-1/+1
| | | | | | | 90% of use cases require embed fields to be inlined, so it's a better default. Also this makes the documentation accurate.
* Don't typo CreateEmbed::image fieldAustin Hellyer2016-11-211-1/+1
|
* Add support for creating embed imagesAustin Hellyer2016-11-211-0/+48
|
* A bit of docsAustin Hellyer2016-11-181-0/+4
|
* Add send_message rich embedsAustin Hellyer2016-11-151-17/+310
|
* Move the builders to the utilsAustin Hellyer2016-11-131-0/+42
The builders aren't a large enough portion of the library to deserve their own root-level module, so move them to the `utils` module. Additionally, split them into separate files, as the library will be receiving more builders and the single-file pattern was getting rather large.