mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-01-31 11:46:16 +08:00
18 lines
569 B
Python
18 lines
569 B
Python
"""Snapshot DTOs"""
|
|
|
|
from .subdomain_snapshot_dto import SubdomainSnapshotDTO
|
|
from .host_port_mapping_snapshot_dto import HostPortMappingSnapshotDTO
|
|
from .website_snapshot_dto import WebsiteSnapshotDTO
|
|
from .directory_snapshot_dto import DirectorySnapshotDTO
|
|
from .endpoint_snapshot_dto import EndpointSnapshotDTO
|
|
from .vulnerability_snapshot_dto import VulnerabilitySnapshotDTO
|
|
|
|
__all__ = [
|
|
'SubdomainSnapshotDTO',
|
|
'HostPortMappingSnapshotDTO',
|
|
'WebsiteSnapshotDTO',
|
|
'DirectorySnapshotDTO',
|
|
'EndpointSnapshotDTO',
|
|
'VulnerabilitySnapshotDTO',
|
|
]
|