8 lines
179 B
Python
8 lines
179 B
Python
from flask import Blueprint
|
|
|
|
from .groups import bp as bp_group
|
|
|
|
bp = Blueprint("project_supervisor", __name__, url_prefix="/project_supervisor")
|
|
|
|
bp.register_blueprint(bp_group)
|