chore: scaffold PySide6 application

This commit is contained in:
QiuSW
2026-06-15 15:53:01 +08:00
parent 5613f08213
commit e91207357b
23 changed files with 116 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
+2
View File
@@ -0,0 +1,2 @@
def load_config():
return {}
+5
View File
@@ -0,0 +1,5 @@
SUPPORTED_IMAGE_EXTENSIONS = {".png", ".jpg", ".jpeg", ".webp"}
def is_supported_image(path):
return path.suffix.lower() in SUPPORTED_IMAGE_EXTENSIONS
+8
View File
@@ -0,0 +1,8 @@
import logging
def setup_logging():
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
)
+2
View File
@@ -0,0 +1,2 @@
def load_templates():
return []