sticker-captcha-bot/sticker/__main__.py
2023-09-11 21:05:50 +08:00

14 lines
185 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())