dev: 进一步细化了项目结构

This commit is contained in:
2026-01-02 21:47:28 +08:00
parent 686d828bfc
commit 69c7213fdf
6 changed files with 41 additions and 0 deletions
View File
+8
View File
@@ -0,0 +1,8 @@
from flask import Blueprint
from ..services import cards
card_bp = Blueprint("card", __name__, "/card")
@card_bp.route("/<id>")
def search_card(id):
return cards.readCard(id)
View File