mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-01-31 11:46:16 +08:00
29 lines
448 B
Python
29 lines
448 B
Python
"""Asset DTOs - 数据传输对象"""
|
|
|
|
# 资产模块 DTOs
|
|
from .asset import (
|
|
SubdomainDTO,
|
|
WebSiteDTO,
|
|
IPAddressDTO,
|
|
DirectoryDTO,
|
|
PortDTO,
|
|
EndpointDTO,
|
|
)
|
|
|
|
# 快照模块 DTOs
|
|
from .snapshot import (
|
|
SubdomainSnapshotDTO,
|
|
)
|
|
|
|
__all__ = [
|
|
# 资产模块
|
|
'SubdomainDTO',
|
|
'WebSiteDTO',
|
|
'IPAddressDTO',
|
|
'DirectoryDTO',
|
|
'PortDTO',
|
|
'EndpointDTO',
|
|
# 快照模块
|
|
'SubdomainSnapshotDTO',
|
|
]
|