diff --git a/main.py b/main.py new file mode 100644 index 0000000..40fafa2 --- /dev/null +++ b/main.py @@ -0,0 +1,11 @@ +from typing import Union + +from fastapi import FastAPI + +app = FastAPI() + + +@app.get("/") +def read_root(): + return {"Hello": "World"} +