Первичная реализация, команды /list и /info

This commit is contained in:
2025-06-09 01:11:10 +08:00
parent 6cebf7356c
commit 687ebc3fdc
9 changed files with 476 additions and 35 deletions

View File

@@ -0,0 +1,20 @@
<?php
/*
* Copyright (c) 2025, Антон Аксенов
* This file is part of iptv.axenov.dev web interface
* MIT License: https://git.axenov.dev/IPTV/web/src/branch/master/LICENSE
*/
declare(strict_types=1);
namespace App\Errors;
use Exception;
class InvalidTelegramSecretException extends Exception
{
public function __construct()
{
parent::__construct("Ошибка валидации запроса от Telegram Bot API");
}
}