TelegramPoster/modules/app.py

13 lines
308 B
Python
Raw Normal View History

2023-01-10 13:52:44 +02:00
from modules.utils import configGet
2023-02-17 17:45:51 +02:00
from classes.poster_client import PosterClient
2023-03-18 21:53:26 +02:00
from convopyro import Conversation
2023-01-10 13:52:44 +02:00
2023-03-09 12:33:02 +02:00
app = PosterClient(
"duptsiaposter",
bot_token=configGet("bot_token", "bot"),
api_id=configGet("api_id", "bot"),
api_hash=configGet("api_hash", "bot"),
)
2023-03-18 21:53:26 +02:00
Conversation(app)