docker / main.py
Norman94's picture
Create main.py
87acf32 verified
raw
history blame
No virus
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}