7 lines
181 B
Python
7 lines
181 B
Python
|
from flask import Blueprint
|
||
|
|
||
|
from .registrations import bp as registrations_bp
|
||
|
|
||
|
bp = Blueprint("students", __name__, url_prefix="/students")
|
||
|
|
||
|
bp.register_blueprint(registrations_bp)
|