aboutsummaryrefslogtreecommitdiff
path: root/src/server/cmd/commands/text.rs
Commit message (Collapse)AuthorAgeFilesLines
* refactor(global): even more modules becoming cratesFuwn2021-05-171-67/+0
| | | | I did multiple checks and **yes**, everything still works perfectly fine.
* refactor(todo): update todo styleFuwn2021-05-021-1/+2
|
* refactor(cmds): remove unimplemented command: whisperFuwn2021-05-011-11/+12
| | | | | When it's time comes, the action command will be implemented, however, at this moment it was serving no purpose.
* feat(cmds): trait based commandsFuwn2021-05-011-10/+29
| | | | | | | 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.
* refactor(cmds): more orphan module functions to methods within structFuwn2021-04-301-0/+46
The rest of the current commands will also receive this refactor... when I have time.