🎉 Hello world

This commit is contained in:
2020-03-26 00:11:37 +01:00
commit eedfbcc2ab
14 changed files with 686 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();
}