mirror of
https://github.com/avitoras/telegram-tui.git
synced 2025-07-27 11:20:31 +00:00
8 lines
167 B
Python
8 lines
167 B
Python
"""Файл инициализации приложения"""
|
|
|
|
from src.app import TelegramTUI
|
|
|
|
if __name__ == "__main__":
|
|
tg = TelegramTUI()
|
|
tg.run()
|