# Entity: Message from fastapi import APIRouter, status from typing import Dict router = APIRouter() @router.get("/get", status_code=status.HTTP_200_OK, response_model=Dict[str, str]) async def get_message() -> Dict[str, str]: return {"message": "let's goo"}