8 lines
169 B
Python
8 lines
169 B
Python
|
|
from flask import Blueprint
|
||
|
|
|
||
|
|
blueprint = Blueprint("user", __name__)
|
||
|
|
|
||
|
|
@blueprint.route("/api/user", methods=["GET"])
|
||
|
|
|
||
|
|
@blueprint.route("/api/user", methods=["OPTIONS"])
|