mirror of
https://github.com/Xtao-Labs/sticker-captcha-bot.git
synced 2024-11-22 15:36:54 +00:00
13 lines
184 B
Python
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())
|