Files
vpnbot/app/index.php
T
mercury b0f8bd56c4 init
2022-10-04 18:36:08 +04:00

15 lines
293 B
PHP

<?php
// require __DIR__ . '/debug.php';
require __DIR__ . '/bot.php';
require __DIR__ . '/config.php';
$url = trim($_SERVER['REQUEST_URI'], '/');
if (!('POST' == $_SERVER['REQUEST_METHOD'] && $url == $key)) {
header('500', true, 500);
die();
}
$bot = new Bot($key);
$bot->input();