container_test / app.py
lingyit1108's picture
added docker files and app.py
8679f57
raw
history blame
127 Bytes
from fastapi import FastAPI
import os
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World!"}