mirror of
https://github.com/Xtao-Labs/iShotaBot.git
synced 2024-11-16 04:35:55 +00:00
20 lines
415 B
Python
20 lines
415 B
Python
import asyncio
|
|
|
|
from pyrogram import idle
|
|
|
|
from init import logs, bot, sqlite
|
|
|
|
|
|
async def main():
|
|
logs.info("连接服务器中。。。")
|
|
await bot.start()
|
|
bot.loop.create_task(sqlite.create_db_and_tables())
|
|
logs.info(f"@{bot.me.username} 运行成功!")
|
|
await idle()
|
|
await bot.stop()
|
|
sqlite.stop()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.get_event_loop().run_until_complete(main())
|