system-pri/backend/app/students/routes/__init__.py

7 lines
181 B
Python
Raw Normal View History

from flask import Blueprint
from .registrations import bp as registrations_bp
bp = Blueprint("students", __name__, url_prefix="/students")
bp.register_blueprint(registrations_bp)