mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-02-02 12:43:17 +08:00
44 lines
1007 B
Python
44 lines
1007 B
Python
"""Asset Services - 业务逻辑层"""
|
|
|
|
# 资产模块 Services
|
|
from .asset import (
|
|
SubdomainService,
|
|
WebSiteService,
|
|
DirectoryService,
|
|
HostPortMappingService,
|
|
EndpointService,
|
|
VulnerabilityService,
|
|
)
|
|
|
|
# 快照模块 Services
|
|
from .snapshot import (
|
|
SubdomainSnapshotsService,
|
|
HostPortMappingSnapshotsService,
|
|
WebsiteSnapshotsService,
|
|
DirectorySnapshotsService,
|
|
EndpointSnapshotsService,
|
|
VulnerabilitySnapshotsService,
|
|
)
|
|
|
|
# 统计模块 Service
|
|
from .statistics_service import AssetStatisticsService
|
|
|
|
__all__ = [
|
|
# 资产模块
|
|
'SubdomainService',
|
|
'WebSiteService',
|
|
'DirectoryService',
|
|
'HostPortMappingService',
|
|
'EndpointService',
|
|
'VulnerabilityService',
|
|
# 快照模块
|
|
'SubdomainSnapshotsService',
|
|
'HostPortMappingSnapshotsService',
|
|
'WebsiteSnapshotsService',
|
|
'DirectorySnapshotsService',
|
|
'EndpointSnapshotsService',
|
|
'VulnerabilitySnapshotsService',
|
|
# 统计模块
|
|
'AssetStatisticsService',
|
|
]
|