mirror of
https://github.com/Xtao-Labs/iShotaBot.git
synced 2024-11-16 04:35:55 +00:00
13 lines
270 B
Python
13 lines
270 B
Python
from pyrogram import idle
|
|
|
|
from init import logs, user_me, bot, sqlite
|
|
|
|
|
|
if __name__ == "__main__":
|
|
logs.info(f"@{user_me.username} 运行成功!")
|
|
bot.start()
|
|
bot.loop.create_task(sqlite.create_db_and_tables())
|
|
idle()
|
|
bot.stop()
|
|
sqlite.stop()
|