10 lines
136 B
Python
10 lines
136 B
Python
"""
|
|
API路由模块
|
|
"""
|
|
|
|
from flask import Blueprint
|
|
|
|
graph_bp = Blueprint('graph', __name__)
|
|
|
|
from . import graph # noqa: E402, F401
|
|
|