5 lines
136 B
Python
5 lines
136 B
Python
from flask import Blueprint
|
|
|
|
root = Blueprint('root', __name__, url_prefix='/')
|
|
#
|
|
data = Blueprint('data', __name__, url_prefix='/data') |