Files
sshecret/tests/types.py
2025-05-16 17:38:21 +02:00

17 lines
229 B
Python

"""Typings."""
from dataclasses import dataclass
from collections.abc import Callable
PortFactory = Callable[[], int]
@dataclass
class TestPorts:
"""Test port dataclass."""
backend: int
admin: int
sshd: int