
- Set up project structure with FastAPI and SQLite - Create models for users, questions, and quizzes - Implement Alembic migrations with seed data - Add user authentication with JWT - Implement question management endpoints - Implement quiz creation and management - Add quiz-taking and scoring functionality - Set up API documentation and health check endpoint - Update README with comprehensive documentation
6 lines
92 B
Python
6 lines
92 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class Login(BaseModel):
|
|
username: str
|
|
password: str |