2023-02-20 21:27:43 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require __DIR__ . DIRECTORY_SEPARATOR . 'autoload.php';
|
|
|
|
|
2024-09-30 02:35:42 -04:00
|
|
|
$bot = new TgBotLib\BotOld('<BOT TOKEN>');
|
2023-02-20 21:27:43 -05:00
|
|
|
|
|
|
|
$bot->setCommandHandler('start', new \commands\StartCommand());
|
|
|
|
$bot->setCommandHandler('hash', new \commands\HashCommand());
|
|
|
|
|
|
|
|
$bot->handleGetUpdates(true);
|