Files
backend/app/routes/matters.py
T
2026-01-20 10:13:51 +08:00

15 lines
305 B
Python

'''
物质定义文件读取路由
'''
from flask import Blueprint
from ..utils import matters
matter_bp = Blueprint("matter", __name__, "/matter")
@matter_bp.route("/id/<id>")
def search_matter(id):
return matters.readMatter(id)
@matter_bp.route("/match/<id>")
def select_matter(id):
return id