#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ @Author : Mihir Mithani @Date : 05-05-2026 , 12:16 @File : app.py.py @Desc : """ from fastapi import FastAPI app = FastAPI() @app.get("/") def greet_json(): return {"Hello": "World!"}