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