Files
ServerSync/lib/prompt_toolkit/log.py

14 lines
153 B
Python
Raw Normal View History

2026-02-12 02:28:23 +02:00
"""
Logging configuration.
"""
from __future__ import annotations
import logging
__all__ = [
"logger",
]
logger = logging.getLogger(__package__)