mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-07-02 06:22:25 +00:00
11 lines
130 B
Python
11 lines
130 B
Python
"""
|
|
Python logger for the telnet server.
|
|
"""
|
|
import logging
|
|
|
|
logger = logging.getLogger(__package__)
|
|
|
|
__all__ = [
|
|
"logger",
|
|
]
|