From d71e2e220f6df48e7cd5627991879d4a5bfadce1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=8D=E8=83=9C=E8=88=9F?= <1650473152@com> Date: Wed, 31 May 2023 00:12:30 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8E=BB=E9=99=A4logo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- applications/__init__.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/applications/__init__.py b/applications/__init__.py index a00a56e..21f1d30 100644 --- a/applications/__init__.py +++ b/applications/__init__.py @@ -20,19 +20,4 @@ def create_app(): # 注册命令 init_script(app) - if os.environ.get('WERKZEUG_RUN_MAIN') == 'true': - logo() - return app - - -def logo(): - print(''' - _____ _ _ ______ _ _ -| __ \ /\ | | (_) | ____| | | | -| |__) |__ __ _ _ __ / \ __| |_ __ ___ _ _ __ | |__ | | __ _ ___| | __ -| ___/ _ \/ _` | '__| / /\ \ / _` | '_ ` _ \| | '_ \ | __| | |/ _` / __| |/ / -| | | __/ (_| | | / ____ \ (_| | | | | | | | | | | | | | | (_| \__ \ < -|_| \___|\__,_|_| /_/ \_\__,_|_| |_| |_|_|_| |_| |_| |_|\__,_|___/_|\_\\ - - ''')