mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 09:39:10 +08:00
16 lines
293 B
PHP
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();
|
||
|
}
|
||
|
}
|