
Telegram Reaction System (Master + Child bots)
---------------------------------------------
Folders:
  master_bot/             - Master bot (admin panel, master_api, config.json)
  child_bot_template/     - Template for child bots (bot_runner.php, config.json)

Quickstart (cPanel):
  1) Upload master_bot/ to public_html/master_bot/
  2) Upload child_bot_template/ to public_html/child_bot_template/
  3) Edit master_bot/config.json: set admin_ids and default settings.
  4) In Master panel (master_bot/index.php) login as admin and add child bot entries to config.json or use provided UI later.
  5) For each child bot copy child_bot_template/ to a folder (e.g. web/child_bots/child1/) and set bot_token in its config.json.
  6) Run child bot with cron job:
     * * * * * /usr/local/bin/php -q /home/USER/public_html/path/to/child1/bot_runner.php
  7) Add mandatory channels from Master panel -> panel/mandatory.php
  Notes:
   - Child bot must be member of mandatory channels to be able to check membership.
   - master_api.php must be accessible from Child bots (use correct domain).
