Files
Iliyan Angelov 6b247e5b9f Updates
2025-09-19 11:58:53 +03:00

14 lines
153 B
Python

"""
Logging configuration.
"""
from __future__ import annotations
import logging
__all__ = [
"logger",
]
logger = logging.getLogger(__package__)