11 lines
208 B
PHP
11 lines
208 B
PHP
<?php
|
|
|
|
// require __DIR__ . '/debug.php';
|
|
require __DIR__ . '/bot.php';
|
|
require __DIR__ . '/config.php';
|
|
|
|
$bot = new Bot($c['key']);
|
|
$bot->setwebhook($c['key']);
|
|
$bot->setcommands();
|
|
$bot->syncPortClients();
|