chore: 修改启动相关

This commit is contained in:
RockChinQ
2024-02-08 13:40:25 +08:00
parent d95e18c202
commit c2b3b53c12
3 changed files with 3 additions and 11 deletions

18
main.py Normal file
View File

@@ -0,0 +1,18 @@
import asyncio
asciiart = r"""
___ ___ _ _ ___ ___ _____
/ _ \ / __| |_ __ _| |_ / __| _ \_ _|
| (_) | (__| ' \/ _` | _| (_ | _/ | |
\__\_\\___|_||_\__,_|\__|\___|_| |_|
⭐️开源地址: https://github.com/RockChinQ/QChatGPT
📖文档地址: https://q.rkcn.top
"""
if __name__ == '__main__':
print(asciiart)
from pkg.core import boot
asyncio.run(boot.main())