sticker-captcha-bot/sticker/__main__.py
2022-07-02 19:44:57 +08:00

13 lines
184 B
Python

from pyrogram import idle
from sticker import bot, logs
async def main():
await bot.start()
logs.info("bot started.")
await idle()
await bot.stop()
bot.run(main())