try_catt / main.py
MohamedLotfy's picture
modify image container adding main for testing
365abf6
raw
history blame
108 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}