Automated Action 43235eb604 Create TechDating API backend
- Setup project structure and basic FastAPI application
- Define database models for users, profiles, matches, and messages
- Set up database connection and create Alembic migrations
- Implement user authentication and registration endpoints
- Create API endpoints for profile management, matches, and messaging
- Add filtering and search functionality for tech profiles
- Setup environment variable configuration
- Create README with project information and setup instructions
2025-05-28 15:17:44 +00:00

6 lines
208 B
Python

from app.crud.crud_user import user
from app.crud.crud_profile import profile
from app.crud.crud_match import match
from app.crud.crud_message import message
__all__ = ["user", "profile", "match", "message"]