Add LinkedIn content generation service to backend

Co-authored-by: ajay.calsoft <ajay.calsoft@gmail.com>
This commit is contained in:
Cursor Agent
2025-08-28 09:42:17 +00:00
parent f76381030b
commit 58918d3ff1
11 changed files with 3573 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 LinkedIn content generation router
from routers.linkedin import router as linkedin_router
# Import user data endpoints
# Import content planning endpoints
from api.content_planning.api.router import router as content_planning_router
@@ -361,6 +364,9 @@ async def research_preferences_data():
# Include component logic router
app.include_router(component_logic_router)
# Include LinkedIn content generation router
app.include_router(linkedin_router)
# Include user data router
# Include content planning router
app.include_router(content_planning_router)