
- Set up project structure with FastAPI - Implement user and account management - Add send and receive money functionality - Set up transaction processing system - Add JWT authentication - Configure SQLAlchemy with SQLite - Set up Alembic for database migrations - Create comprehensive API documentation
13 lines
362 B
Python
13 lines
362 B
Python
from app.models.user import User
|
|
from app.models.account import Account, AccountType
|
|
from app.models.transaction import Transaction, TransactionType, TransactionStatus
|
|
|
|
# Define __all__ to make explicit what's exported from this module
|
|
__all__ = [
|
|
"User",
|
|
"Account",
|
|
"AccountType",
|
|
"Transaction",
|
|
"TransactionType",
|
|
"TransactionStatus",
|
|
] |