🎉 Improved backend structure & logs organization 🎉

This commit is contained in:
2025-06-01 03:25:55 +02:00
parent 8969cf6df6
commit 09462724e0
63 changed files with 2014 additions and 491 deletions

View File

@ -0,0 +1,11 @@
"""
SSL-Konfiguration für HTTPS-Server
Importiert SSL-Funktionalität aus der Hauptkonfiguration
"""
try:
from config.settings_copy import get_ssl_context
except ImportError:
def get_ssl_context():
"""Fallback wenn settings_copy nicht verfügbar"""
return None