From 411034902aadb916f651263fbb211cfe98bcb383 Mon Sep 17 00:00:00 2001 From: RockChinQ <1010553892@qq.com> Date: Sat, 27 Jan 2024 00:05:55 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=90=AF=E5=8A=A8=E6=97=B6=E5=B1=95?= =?UTF-8?q?=E7=A4=BAasciiart?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- start.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/start.py b/start.py index b56ea9e9..ead77490 100644 --- a/start.py +++ b/start.py @@ -1,7 +1,15 @@ import asyncio -from pkg.core import boot +asciiart = r""" + ___ ___ _ _ ___ ___ _____ + / _ \ / __| |_ __ _| |_ / __| _ \_ _| +| (_) | (__| ' \/ _` | _| (_ | _/ | | + \__\_\\___|_||_\__,_|\__|\___|_| |_| +""" if __name__ == '__main__': + print(asciiart) + + from pkg.core import boot asyncio.run(boot.main())