TelegramPoster/modules/app.py

10 lines
254 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-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"),
)