Automated Action 2c6298ca4b Implement fintech payment service backend with FastAPI and SQLite
- 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
2025-06-17 11:53:41 +00:00

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",
]