Fix architecture - restore helper layer and use ModuleManager for reload trigger

Co-authored-by: jxxghp <51039935+jxxghp@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-01-25 10:06:01 +00:00
parent 4ee21ffae4
commit a857337b31
3 changed files with 59 additions and 51 deletions

View File

@@ -2,7 +2,7 @@ from fastapi import APIRouter, Depends
from app import schemas
from app.db.models import User
from app.db.user_oper import get_current_active_superuser, get_current_active_user
from app.modules.themoviedb.category import CategoryHelper
from app.helper.category import CategoryHelper
from app.schemas.category import CategoryConfig
router = APIRouter()