A debug adapter listening for an IDE connection.
Source code in src/wetlands/debugging.py
| @dataclass(frozen=True)
class DebugEndpoint:
"""A debug adapter listening for an IDE connection."""
worker_id: str
adapter: Literal["debugpy"]
host: str
port: int
|