Initial commit

This commit is contained in:
2026-01-30 13:17:42 +02:00
commit 580d27028b
19 changed files with 335 additions and 0 deletions

9
uv_app/logging_config.py Normal file
View File

@@ -0,0 +1,9 @@
import logging
LOGGER = logging.getLogger(__name__)
logging.basicConfig(
format="%(asctime)s [%(levelname)s] - <%(name)s> - %(message)s",
level=logging.INFO,
handlers=[logging.StreamHandler()],
)