Suhasdev's picture
Deploy Universal Prompt Optimizer to HF Spaces (clean)
cacd4d0
raw
history blame contribute delete
340 Bytes
"""
Infrastructure module for cross-cutting concerns.
This module contains infrastructure components that are used across
the entire application, including logging, metrics, and configuration.
"""
from .logging import get_logger, configure_logging, LogContext
__all__ = [
"get_logger",
"configure_logging",
"LogContext",
]