fastapi / app.py
mujibanget's picture
Upload 2 files
b54e83e verified
Raw
History Blame Contribute Delete
117 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}