ml / main.py
streetyogi's picture
Rename app/main.py to main.py
cf36701
raw
history blame contribute delete
No virus
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}