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
+4 -4
View File
@@ -9,10 +9,10 @@ from types import SimpleNamespace
PROJECT_ROOT = Path(__file__).resolve().parents[1]
sys.path.insert(0, str(PROJECT_ROOT))
from app.helper import rss as rss_module
from app.helper.rss import RssHelper
from app.utils import rust_accel
from app.utils.http import RequestUtils
from app.infrastructure import rss as rss_module
from app.infrastructure.rss import RssHelper
from app.infrastructure import rust as rust_accel
from app.foundation.http import RequestUtils
class FakeRequestUtils: