from flask import Blueprint

bp = Blueprint('teacher', __name__)

# Import routes after Blueprint creation to avoid circular imports
from app.routes.teacher.main import *
from app.routes.teacher.courses import *
from app.routes.teacher.outline import *
from app.routes.teacher.topics import *
from app.routes.teacher.students import *
from app.routes.teacher.submissions import *
from app.routes.teacher.dictionary import *
from app.routes.teacher.quiz import *

# Make bp available as teacher_bp for compatibility
teacher_bp = bp