mirror of
https://github.com/andrey271192/Keenetic_SSH.git
synced 2026-09-20 14:41:58 +00:00
11 lines
262 B
Python
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())
|