refactor: удаление неиспользуемых импортов

This commit is contained in:
2026-07-04 18:03:37 +03:00
parent ecb669a5a1
commit 7e35cbabd1
+4 -1
View File
@@ -14,7 +14,6 @@ from .outbound_fields import OUTBOUND_FIELDS
if TYPE_CHECKING: if TYPE_CHECKING:
from .target import Target, TargetStorage from .target import Target, TargetStorage
from .xray_config import XrayConfig from .xray_config import XrayConfig
from .xray_manager_config import XrayManagerConfig
@dataclass(frozen=True) @dataclass(frozen=True)
@@ -102,6 +101,10 @@ class Outbound(ABC):
PROTOCOL: str PROTOCOL: str
LINK_SCHEME: str LINK_SCHEME: str
host: str
port: int
target: Target
@classmethod @classmethod
@abstractmethod @abstractmethod
def from_link( def from_link(