feat: 实现物质查询,调整项目结构
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
from flask import Blueprint
|
||||
from ..services import matters
|
||||
|
||||
matter_bp = Blueprint("matter", __name__, "/matter")
|
||||
|
||||
@matter_bp.route("/<id>")
|
||||
def search_matter(id):
|
||||
return matters.readMatter(id)
|
||||
Reference in New Issue
Block a user