31 lines
599 B
Python
31 lines
599 B
Python
"""数据模型包"""
|
|
from .domain import ProxyRaw, Proxy, PluginInfo
|
|
from .schemas import (
|
|
ProxyCreate,
|
|
ProxyResponse,
|
|
PluginResponse,
|
|
SettingsSchema,
|
|
CrawlSummarySchema,
|
|
ProxyListRequest,
|
|
ProxyDeleteItem,
|
|
BatchDeleteRequest,
|
|
PluginToggleRequest,
|
|
ExportRequest,
|
|
)
|
|
|
|
__all__ = [
|
|
"ProxyRaw",
|
|
"Proxy",
|
|
"PluginInfo",
|
|
"ProxyCreate",
|
|
"ProxyResponse",
|
|
"PluginResponse",
|
|
"SettingsSchema",
|
|
"CrawlSummarySchema",
|
|
"ProxyListRequest",
|
|
"ProxyDeleteItem",
|
|
"BatchDeleteRequest",
|
|
"PluginToggleRequest",
|
|
"ExportRequest",
|
|
]
|