feat: add 'log_structured_entry' for JSON structured logs

Move config into own file
This commit is contained in:
2026-02-24 17:02:06 +00:00
parent 427de45522
commit 3b7dd91a71
3 changed files with 108 additions and 0 deletions

4
utils/__init__.py Normal file
View File

@@ -0,0 +1,4 @@
from .config import Settings, _args
from .logging_setup import log_structured_entry
__all__ = ['Settings', '_args', 'log_structured_entry']