mirror of
https://github.com/yyhuni/xingrin.git
synced 2026-01-31 11:46:16 +08:00
42 lines
1.1 KiB
Python
42 lines
1.1 KiB
Python
"""Asset Repositories - 数据访问层"""
|
|
|
|
# 资产模块 Repositories
|
|
from .asset import (
|
|
DjangoSubdomainRepository,
|
|
DjangoWebSiteRepository,
|
|
DjangoDirectoryRepository,
|
|
DjangoHostPortMappingRepository,
|
|
DjangoEndpointRepository,
|
|
)
|
|
|
|
# 快照模块 Repositories
|
|
from .snapshot import (
|
|
DjangoSubdomainSnapshotRepository,
|
|
DjangoHostPortMappingSnapshotRepository,
|
|
DjangoWebsiteSnapshotRepository,
|
|
DjangoDirectorySnapshotRepository,
|
|
DjangoEndpointSnapshotRepository,
|
|
)
|
|
|
|
# 统计模块 Repository
|
|
from .statistics_repository import AssetStatisticsRepository
|
|
|
|
__all__ = [
|
|
# 资产模块
|
|
'DjangoSubdomainRepository',
|
|
'DjangoWebSiteRepository',
|
|
'DjangoDirectoryRepository',
|
|
'DjangoHostPortMappingRepository',
|
|
'DjangoEndpointRepository',
|
|
# 快照模块
|
|
'DjangoSubdomainSnapshotRepository',
|
|
'DjangoHostPortMappingSnapshotRepository',
|
|
'DjangoWebsiteSnapshotRepository',
|
|
'DjangoDirectorySnapshotRepository',
|
|
'DjangoEndpointSnapshotRepository',
|
|
# 统计模块
|
|
'AssetStatisticsRepository',
|
|
]
|
|
|
|
|