Files
material-api/web/api/blueprint.py

5 lines
136 B
Python
Raw Permalink Normal View History

2024-05-29 10:21:31 +08:00
from flask import Blueprint
root = Blueprint('root', __name__, url_prefix='/')
#
data = Blueprint('data', __name__, url_prefix='/data')