From 48d20a08b70edec867865a30d6c1cfd3f1cf03e1 Mon Sep 17 00:00:00 2001 From: andrey271192 <76248502+andrey271192@users.noreply.github.com> Date: Sat, 30 May 2026 18:27:44 +0300 Subject: [PATCH] contact: personal Telegram -> group @PCAdministration --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 1824006..7efa157 100644 --- a/app.py +++ b/app.py @@ -21,7 +21,7 @@ log = logging.getLogger("kssh") APP_DIR = Path(__file__).resolve().parent WEB_PASSWORD = os.environ.get("WEB_PASSWORD", "").strip() -AUTHOR_TG = os.environ.get("AUTHOR_TELEGRAM_USERNAME", "Iot_andrey").strip().lstrip("@") or "Iot_andrey" +AUTHOR_TG = os.environ.get("AUTHOR_TELEGRAM_USERNAME", "PCAdministration").strip().lstrip("@") or "PCAdministration" ALLOWED_IPS_RAW = os.environ.get("ALLOWED_IPS", "").strip() ALLOWED_IPS = {x.strip() for x in ALLOWED_IPS_RAW.split(",") if x.strip()} if ALLOWED_IPS_RAW else set() CMD_TIMEOUT = int(os.environ.get("CMD_TIMEOUT", "300"))