chore: scaffold PySide6 application
This commit is contained in:
@@ -0,0 +1 @@
|
||||
|
||||
@@ -0,0 +1,2 @@
|
||||
def load_config():
|
||||
return {}
|
||||
@@ -0,0 +1,5 @@
|
||||
SUPPORTED_IMAGE_EXTENSIONS = {".png", ".jpg", ".jpeg", ".webp"}
|
||||
|
||||
|
||||
def is_supported_image(path):
|
||||
return path.suffix.lower() in SUPPORTED_IMAGE_EXTENSIONS
|
||||
@@ -0,0 +1,8 @@
|
||||
import logging
|
||||
|
||||
|
||||
def setup_logging():
|
||||
logging.basicConfig(
|
||||
level=logging.INFO,
|
||||
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
|
||||
)
|
||||
@@ -0,0 +1,2 @@
|
||||
def load_templates():
|
||||
return []
|
||||
Reference in New Issue
Block a user