Files
material-api/web/api/blueprint.py
2024-05-29 10:21:31 +08:00

5 lines
136 B
Python

from flask import Blueprint
root = Blueprint('root', __name__, url_prefix='/')
#
data = Blueprint('data', __name__, url_prefix='/data')