aboutsummaryrefslogtreecommitdiff
path: root/src/framework/standard/command.rs
Commit message (Collapse)AuthorAgeFilesLines
...
* 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.