
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>
9 lines
432 B
Python
9 lines
432 B
Python
from app.schemas.user import User, UserCreate, UserUpdate, Token, TokenData
|
|
from app.schemas.testimonial import Testimonial, TestimonialCreate, TestimonialUpdate
|
|
from app.schemas.usage_stat import UsageStat, UsageStatCreate, UsageStatUpdate
|
|
|
|
__all__ = [
|
|
"User", "UserCreate", "UserUpdate", "Token", "TokenData",
|
|
"Testimonial", "TestimonialCreate", "TestimonialUpdate",
|
|
"UsageStat", "UsageStatCreate", "UsageStatUpdate"
|
|
] |