v2board/app/Plugins/Telegram/Telegram.php
2022-01-27 01:46:26 +08:00

16 lines
293 B
PHP

<?php
namespace App\Plugins\Telegram;
use App\Services\TelegramService;
abstract class Telegram {
abstract protected function handle($message, $match);
public $telegramService;
public function __construct()
{
$this->telegramService = new TelegramService();
}
}