mirror of
https://github.com/Xtao-Labs/misskey2telegram.git
synced 2024-11-22 13:55:53 +00:00
11 lines
195 B
Python
11 lines
195 B
Python
|
from pyrogram import idle
|
||
|
|
||
|
from init import logs, bot
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
logs.info("Bot 开始运行")
|
||
|
bot.start()
|
||
|
logs.info("Bot 启动成功!")
|
||
|
idle()
|
||
|
bot.stop()
|