aboutsummaryrefslogtreecommitdiff
path: root/src/framework/standard/create_command.rs
Commit message (Collapse)AuthorAgeFilesLines
* Replace Vec parameters by IntoIterator (#176)François Triquet2017-10-041-3/+3
|
* `to_owned` -> `to_string`acdenisSK2017-10-011-7/+7
|
* Fix tests and example 05Zeyla Hellyer2017-09-241-3/+8
|
* Revamp errors in `Args` and commandsacdenisSK2017-09-231-26/+4
|
* Also rustfmtZeyla Hellyer2017-09-181-2/+2
|
* Add Send/Sync to framework itemsZeyla Hellyer2017-09-181-0/+2
|
* Apply rustfmtZeyla Hellyer2017-09-181-7/+4
|
* Allow commands to be limited to certain roles (#157)Lakelezz2017-09-051-0/+8
|
* Add num_args (#156)Maiddog2017-08-311-0/+8
|
* Add ability to play DCA and Opus files. (#148)Maiddog2017-08-271-4/+7
|
* Revamp `RwLock` usage in the libacdenisSK2017-08-241-7/+4
| | | | Also not quite sure if they goofed rustfmt or something, but its changes it did were a bit bizarre.
* Fix tests (#145)Maiddog2017-08-221-5/+2
|
* Revamp the args to an `Args` structacdenisSK2017-08-201-26/+7
| | | | Fixes #142
* Move builtin framework impl to its own moduleZeyla Hellyer2017-08-191-0/+245
The framework is now moved in its entirity to the `framework` module, with the `Framework` trait currently on its own and the builtin implementation provided. The builtin implementation has been renamed to "Standard". Upgrade path: Rename the `BuiltinFramework` import to `StandardFramework`. Instead of importing builtin framework items from `serenity::framework`, import them from `serenity::framework::standard`. This is the beginning to #60. The root `framework` module (non-standard implementation) will be built more by the time it's closed.