Add AI SEO tools with FastAPI endpoints and comprehensive services
Co-authored-by: ajay.calsoft <ajay.calsoft@gmail.com>
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user