- Added some documentation
This commit is contained in:
Tristan B. Velloza Kildaire 2023-06-18 12:12:37 +02:00
parent 8917e649bd
commit 69c45abd2b
1 changed files with 10 additions and 0 deletions

View File

@ -7,10 +7,20 @@ import botty.mod;
import botty.bot : Bot;
import birchwood.protocol.messages : Message;
/**
* Ping command
*/
public final class Ping : Mod
{
private static string commandStr = ".ping";
/**
* Constructs a new `Ping` module with the provided
* bot to associate with
*
* Params:
* bot = the `Bot` to associate with
*/
this(Bot bot)
{
super(bot);