10 lines
254 B
Python
10 lines
254 B
Python
from modules.utils import configGet
|
|
from classes.poster_client import PosterClient
|
|
|
|
app = PosterClient(
|
|
"duptsiaposter",
|
|
bot_token=configGet("bot_token", "bot"),
|
|
api_id=configGet("api_id", "bot"),
|
|
api_hash=configGet("api_hash", "bot"),
|
|
)
|