sticker-captcha-bot/sticker/__main__.py

14 lines
185 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()
2023-09-11 13:05:50 +00:00
2022-07-02 11:44:57 +00:00
bot.run(main())