8 lines
207 B
Python
8 lines
207 B
Python
from flask import Blueprint
|
|
from .coordinator.routes import bp as coordinator_bp
|
|
|
|
api_bp = Blueprint('api', __name__, url_prefix='/api')
|
|
|
|
# register blueprints here
|
|
api_bp.register_blueprint(coordinator_bp)
|