docker-demo2 / main.py
syf2023's picture
Create main.py
9e98978
raw
history blame contribute delete
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}