Automated Action 246b4e058e Implement comprehensive FastAPI backend for landing page
Added complete backend infrastructure with:
- Authentication system with OAuth (Google, GitHub, Apple)
- Stripe payment processing with subscription management
- Testimonials management API
- Usage statistics tracking
- Email communication services
- Health monitoring endpoints
- Database migrations with Alembic
- Comprehensive API documentation

All APIs are production-ready with proper error handling,
security measures, and environment variable configuration.

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-01 23:39:39 +00:00

10 lines
579 B
Python

from fastapi import APIRouter
from app.api.v1 import auth, testimonials, usage_stats, communication, payments
api_router = APIRouter()
api_router.include_router(auth.router, prefix="/auth", tags=["Authentication"])
api_router.include_router(testimonials.router, prefix="/testimonials", tags=["Testimonials"])
api_router.include_router(usage_stats.router, prefix="/stats", tags=["Usage Statistics"])
api_router.include_router(communication.router, prefix="/communication", tags=["Communication"])
api_router.include_router(payments.router, prefix="/payments", tags=["Payments"])