aboutsummaryrefslogtreecommitdiff
path: root/src/server/cmd/extendable.rs
Commit message (Collapse)AuthorAgeFilesLines
* refactor(global): even more modules becoming cratesFuwn2021-05-171-18/+0
| | | | I did multiple checks and **yes**, everything still works perfectly fine.
* feat(cmds): trait based commandsFuwn2021-05-011-0/+18
This commit adds the abiltity to implement a series of given traits for a command, where each command should implement **at least** one of these traits; Parsable, ParsableWithArguments, Creatable. These changed are put in place to ensure that when implementing a command, the proper methods are implemented in the proper format.