sticker-captcha-bot/sticker/__main__.py

13 lines
184 B
Python
Raw Normal View History

2022-07-02 11:44:57 +00:00
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())