17 lines
406 B
Python
17 lines
406 B
Python
"""
|
|
API路由模块
|
|
"""
|
|
|
|
from flask import Blueprint
|
|
|
|
graph_bp = Blueprint('graph', __name__)
|
|
simulation_bp = Blueprint('simulation', __name__)
|
|
report_bp = Blueprint('report', __name__)
|
|
narrative_bp = Blueprint('narrative', __name__)
|
|
|
|
from . import graph # noqa: E402, F401
|
|
from . import simulation # noqa: E402, F401
|
|
from . import report # noqa: E402, F401
|
|
from . import narrative # noqa: E402, F401
|
|
|