
- Set up project structure with FastAPI and SQLite - Implement user authentication with JWT - Create database models for users, events, bets, and transactions - Add API endpoints for user management - Add API endpoints for events and betting functionality - Add wallet management for deposits and withdrawals - Configure Alembic for database migrations - Add linting with Ruff - Add documentation in README
5 lines
210 B
Python
5 lines
210 B
Python
from app.models.bet import Bet, BetStatus
|
|
from app.models.event import Event, Market, Outcome
|
|
from app.models.transaction import Transaction, TransactionStatus, TransactionType
|
|
from app.models.user import User
|