refactor backend module architecture

This commit is contained in:
jxxghp
2026-08-14 15:45:38 +08:00
parent 557cc0e2e3
commit 7b3444c366
716 changed files with 10378 additions and 7709 deletions
+19
View File
@@ -0,0 +1,19 @@
"""插件常用的 HTTP、地址和站点处理工具。"""
from app.domain.site import SiteUtils
from app.infrastructure.network import IpUtils
from app.foundation.url import UrlUtils
from app.foundation.http import AsyncRequestUtils, RequestUtils
from app.integrations.location import WebUtils
from app.security.url import SecurityUtils
__all__ = [
"AsyncRequestUtils",
"IpUtils",
"RequestUtils",
"SecurityUtils",
"SiteUtils",
"UrlUtils",
"WebUtils",
]