| 123456789101112131415 |
- import asyncio
- import json
- import traceback
- import uuid
- from typing import Dict, Any
- from quart import Blueprint, jsonify, request
- server_bp = Blueprint("api", __name__, url_prefix="/api")
- @server_bp.route("/hello", methods=["GET"])
- async def _hello():
- return jsonify({"msg": "Hello, World! Hello Future!"})
|