Xboard/app/Plugins/Telegram/Telegram.php

16 lines
293 B
PHP
Raw Normal View History

2023-11-17 01:44:01 -05:00
<?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();
}
}