barclays_challenge_event_20.../routes/application_routes.py

12 lines
268 B
Python
Raw Permalink Normal View History

2024-04-04 02:47:57 +00:00
from flask import Blueprint
blueprint = Blueprint("user", __name__)
@blueprint.route("/api/user", methods=["POST"])
@blueprint.route("/api/user", methods=["PATCH"])
@blueprint.route("/api/user", methods=["GET"])
@blueprint.route("/api/user", methods=["OPTIONS"])