apidemov1 / main.py
Danielrahmai1991's picture
Update main.py
05c764f verified
raw
history blame
125 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"message": "Hello, World mohammad!"}