docker-space / main.py
AI ML
Create main.py
ad6de71
raw
history blame
No virus
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}