From 9c33b924d36cc8574b90f723c127df688a05000b Mon Sep 17 00:00:00 2001 From: Julian Freeman Date: Sat, 18 Oct 2025 21:34:45 -0400 Subject: [PATCH] reorganize resources structure --- resources.py => common/resources.py | 0 main.py | 2 +- logo.png => resources/logo.png | Bin resources.qrc => resources/resources.qrc | 0 4 files changed, 1 insertion(+), 1 deletion(-) rename resources.py => common/resources.py (100%) rename logo.png => resources/logo.png (100%) rename resources.qrc => resources/resources.qrc (100%) diff --git a/resources.py b/common/resources.py similarity index 100% rename from resources.py rename to common/resources.py diff --git a/main.py b/main.py index 6a88c70..f5e029f 100644 --- a/main.py +++ b/main.py @@ -3,9 +3,9 @@ from PySide6.QtWidgets import QApplication from PySide6.QtCore import QLocale from qfluentwidgets import FluentTranslator -import resources from components.main_window import MainWindow +import common.resources # --- 运行 GUI --- diff --git a/logo.png b/resources/logo.png similarity index 100% rename from logo.png rename to resources/logo.png diff --git a/resources.qrc b/resources/resources.qrc similarity index 100% rename from resources.qrc rename to resources/resources.qrc