From b5ca5fbf93914d51fe02deb08f23c14aa2785353 Mon Sep 17 00:00:00 2001 From: mercury Date: Thu, 8 Aug 2024 17:11:26 +0400 Subject: [PATCH] mirror --- app/bot.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/bot.php b/app/bot.php index d8e749e..bc98478 100644 --- a/app/bot.php +++ b/app/bot.php @@ -133,6 +133,9 @@ class Bot case preg_match('~^/changeWG (\d+)$~', $this->input['callback'], $m): $this->changeWG($m[1]); break; + case preg_match('~^/mirror$~', $this->input['message'], $m): + $this->menu('mirror'); + break; case preg_match('~^/id$~', $this->input['message'], $m): $this->send($this->input['chat'], $this->input['from'], $this->input['message_id']); break;