mirror of
https://github.com/avitoras/telegram-tui.git
synced 2025-07-27 19:26:10 +00:00
9 lines
178 B
Python
Executable File
9 lines
178 B
Python
Executable File
#!/usr/bin/python
|
|
"""Файл инициализации приложения"""
|
|
|
|
from src.app import TelegramTUI
|
|
|
|
if __name__ == "__main__":
|
|
tg = TelegramTUI()
|
|
tg.run()
|