Files
backend/app/routes/cards.py
T

8 lines
180 B
Python
Raw Normal View History

2026-01-02 21:47:28 +08:00
from flask import Blueprint
2026-01-20 08:45:50 +08:00
from ..utils import cards
2026-01-02 21:47:28 +08:00
card_bp = Blueprint("card", __name__, "/card")
2026-01-20 08:45:50 +08:00
@card_bp.route("/id/<id>")
2026-01-02 21:47:28 +08:00
def search_card(id):
return cards.readCard(id)