This repository has been archived on 2024-09-30. You can view files and clone it, but cannot push or open issues/pull-requests.
hook-frida/venv/Lib/site-packages/prompt_toolkit/contrib/telnet/log.py

13 lines
166 B
Python

"""
Python logger for the telnet server.
"""
from __future__ import annotations
import logging
logger = logging.getLogger(__package__)
__all__ = [
"logger",
]