11 lines
219 B
Python
11 lines
219 B
Python
from flask import Blueprint, Flask
|
|
|
|
rights_bp = Blueprint('rights', __name__, url_prefix='/rights')
|
|
|
|
from . import routes
|
|
from . import view
|
|
|
|
|
|
def register_rights_view(app: Flask):
|
|
app.register_blueprint(rights_bp)
|