Funktionstrennung 1.0

This commit is contained in:
Nirodan
2025-06-17 11:28:06 +02:00
parent 97acda1d2b
commit 8ca650cf11
11 changed files with 199 additions and 48 deletions
+6
View File
@@ -0,0 +1,6 @@
from flask import jsonify
from util.logger import logger
def logout_route():
logger.info("👋 Logout called")
return jsonify({"message": "Logout successful"})