aboutsummaryrefslogtreecommitdiff
path: root/src/framework/standard/command.rs
Commit message (Collapse)AuthorAgeFilesLines
* Fix #206 (#207)Uninteresting Account2017-10-291-10/+27
|
* Add a todoacdenisSK2017-09-301-0/+1
|
* Make the internal string publicacdenisSK2017-09-301-1/+1
|
* Use display instead of std::error::ErroracdenisSK2017-09-251-28/+3
| | | | Kind of a bad decision but due to the compiler being a meany with impl conflicts for `From<&str>` and `From<String>`, it needs to be done. Plus it removes the useless custom struct.
* Revamp errors in `Args` and commandsacdenisSK2017-09-231-9/+54
|
* Also rustfmtZeyla Hellyer2017-09-181-2/+7
|
* Add Send/Sync to framework itemsZeyla Hellyer2017-09-181-7/+7
|
* Apply rustfmtZeyla Hellyer2017-09-181-4/+1
|
* Copy some methods from Command to Group (#164)Maiddog2017-09-111-1/+8
|
* Allow commands to be limited to certain roles (#157)Lakelezz2017-09-051-0/+3
|
* Add ability to play DCA and Opus files. (#148)Maiddog2017-08-271-1/+4
|
* Revamp `RwLock` usage in the libacdenisSK2017-08-241-4/+1
| | | | 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-1/+1
|
* Revamp the args to an `Args` structacdenisSK2017-08-201-8/+5
| | | | Fixes #142
* Move builtin framework impl to its own moduleZeyla Hellyer2017-08-191-0/+157
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.