
- Set up SQLite database configuration and directory structure - Configure Alembic for proper SQLite migrations - Add initial model schemas and API endpoints - Fix OAuth2 authentication - Implement proper code formatting with Ruff
5 lines
124 B
Python
5 lines
124 B
Python
# Re-export models
|
|
from app.models.user import User
|
|
from app.models.location import Location
|
|
|
|
__all__ = ["User", "Location"] |