123456789101112131415161718192021222324 |
- <?php
- namespace BotKit;
- // Файл, на который поступают запросы
- require_once __DIR__.'/src/bootstrap.php';
- use BotKit\Common\Bot;
- use BotKit\Common\Commands;
- use BotKit\Drivers\TgBotDriver;
- use BotKit\Events\PlainMessageEvent;
- $tgdriver = new TgBotDriver($_ENV['TELEGRAMORG_TOKEN']);
- $bot = new Bot();
- $bot->loadDriver($tgdriver);
- $bot->on(
- PlainMessageEvent::class,
- function ($e, $u, $driver) {
- return true;
- },
- "BotKit\Common\Commands::echoMessage"
- );
|