fix: 포트 충돌 회피 — note_bridge 8098, intent_service 8099

Jellyfin(8096), OrbStack(8097) 포트 충돌으로 변경.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Hyungi Ahn
2026-03-19 13:53:55 +09:00
parent dc08d29509
commit c2257d3a86
2709 changed files with 619549 additions and 10 deletions

View File

@@ -0,0 +1,32 @@
"""propcache: An accelerated property cache for Python classes."""
from typing import TYPE_CHECKING
_PUBLIC_API = ("cached_property", "under_cached_property")
__version__ = "0.4.1"
__all__ = ()
# Imports have moved to `propcache.api` in 0.2.0+.
# This module is now a facade for the API.
if TYPE_CHECKING:
from .api import cached_property as cached_property # noqa: F401
from .api import under_cached_property as under_cached_property # noqa: F401
def _import_facade(attr: str) -> object:
"""Import the public API from the `api` module."""
if attr in _PUBLIC_API:
from . import api # pylint: disable=import-outside-toplevel
return getattr(api, attr)
raise AttributeError(f"module '{__package__}' has no attribute '{attr}'")
def _dir_facade() -> list[str]:
"""Include the public API in the module's dir() output."""
return [*_PUBLIC_API, *globals().keys()]
__getattr__ = _import_facade
__dir__ = _dir_facade