Add AI SEO tools with FastAPI endpoints and comprehensive services

Co-authored-by: ajay.calsoft <ajay.calsoft@gmail.com>
This commit is contained in:
Cursor Agent
2025-08-24 11:47:42 +00:00
parent 5d8d1cfb73
commit 512f82b7b0
17 changed files with 3637 additions and 0 deletions

View File

@@ -48,6 +48,9 @@ from api.onboarding import (
# Import component logic endpoints
from api.component_logic import router as component_logic_router
# Import SEO tools router
from routers.seo_tools import router as seo_tools_router
# Import user data endpoints
# Import content planning endpoints
from api.content_planning.api.router import router as content_planning_router
@@ -360,6 +363,9 @@ async def research_preferences_data():
# Include component logic router
app.include_router(component_logic_router)
# Include SEO tools router
app.include_router(seo_tools_router)
# Include user data router
# Include content planning router
app.include_router(content_planning_router)