didier/backend/routes/stats/command_stats/command_stats_route.py

9 lines
210 B
Python

from quart import Blueprint
command_stats_blueprint: Blueprint = Blueprint("command_stats", __name__, "/commands")
@command_stats_blueprint.route("/", methods=["GET"])
def get_commands():
return {}, 200