15 lines
333 B
Python
15 lines
333 B
Python
from modules.utils import configGet
|
|
from classes.poster_client import PosterClient
|
|
from convopyro import Conversation
|
|
|
|
app = PosterClient(
|
|
"duptsiaposter",
|
|
bot_token=configGet("bot_token", "bot"),
|
|
api_id=configGet("api_id", "bot"),
|
|
api_hash=configGet("api_hash", "bot"),
|
|
)
|
|
|
|
Conversation(app)
|
|
|
|
users_with_context = []
|