DeavmiComedy

- Added some documentation
This commit is contained in:
Tristan B. Velloza Kildaire 2023-06-18 12:12:24 +02:00
parent a2967245a0
commit 1210d202fb
1 changed files with 13 additions and 0 deletions

View File

@ -1,13 +1,26 @@
/**
* Deavmi Comedy module
*/
module botty.modules.deavmicomedy;
import botty.mod;
import botty.bot : Bot;
import birchwood.protocol.messages : Message;
/**
* Deavmi Comedy command
*/
public final class DeavmiComedy : Mod
{
private static string commandStr = ".deavmicomedy";
/**
* Constructs a new `DeavmiComedy` module with the provided
* bot to associate with
*
* Params:
* bot = the `Bot` to associate with
*/
this(Bot bot)
{
super(bot);