alfred-nextcloud/bot/Commands/Icommands.php
2024-08-07 17:05:07 +02:00

15 lines
254 B
PHP

<?php
namespace Shikiryu\Bot\Commands;
use Shikiryu\Bot\Bot;
interface Icommands
{
public static function getMessage(Bot $bot, array $data);
public static function getDescription(): string;
public static function getPattern(): string;
}