Kostiantyn Kuleshov
853c3c7cea
* Config file changes * Commands `/remove`, `/import` and `/export` Co-authored-by: profitroll <vozhd.kk@gmail.com> Co-authored-by: Profitroll <47523801+profitrollgame@users.noreply.github.com> Co-authored-by: Renovate <renovate@git.end-play.xyz> Reviewed-on: #19
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 = []
|