🎉 Hello world

This commit is contained in:
Shikiryu
2024-08-05 23:33:27 +02:00
commit a63538c768
10 changed files with 359 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
namespace Shikiryu\Bot\Commands;
use Shikiryu\Bot\Bot;
interface Icommands
{
public static function getMessage(Bot $bot, array $data);
/**
* @return string
*/
public static function getDescription();
}