Files
Keenetic_SSH/keenetic_ssh/app.py
Андрей Бобырев 788477d5c6 Keenetic SSH: standalone Telegram bot for Keenetic router SSH control
Made-with: Cursor
2026-04-24 12:01:05 +03:00

11 lines
262 B
Python

import asyncio, logging, sys
def main():
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s %(levelname)s %(name)s: %(message)s",
stream=sys.stdout,
)
from .bot import telegram_loop
asyncio.run(telegram_loop())