# Import all models to ensure they are registered with SQLAlchemy
from app.models.user import User
from app.models.topic import Topic, ComprehensionQuestion, SpeakingQuestion
from app.models.progress import Progress, Submission
from app.models.vocabulary import Vocabulary
from app.models.course import ShortCourse, LearningCourse
from app.models.activity import Activity
from app.models.quiz import VocabularyQuiz, QuizQuestion
from app.models.dictionary import DictionaryEntry
from app.models.team import TeamMember