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
+2 -2
View File
@@ -13,7 +13,7 @@ def _load_rtorrent_client_module():
app_module = types.ModuleType("app")
app_module.__path__ = []
log_module = types.ModuleType("app.log")
log_module = types.ModuleType("app.platform.log")
class _Logger:
"""
@@ -43,7 +43,7 @@ def _load_rtorrent_client_module():
stub_modules = {
"app": app_module,
"app.log": log_module,
"app.platform.log": log_module,
}
rtorrent_path = repo_root / "app" / "modules" / "rtorrent" / "rtorrent.py"