diff options
Diffstat (limited to 'iss/server.py')
| -rw-r--r-- | iss/server.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/iss/server.py b/iss/server.py new file mode 100644 index 0000000..ee60be1 --- /dev/null +++ b/iss/server.py @@ -0,0 +1,8 @@ +from fastapi import FastAPI + +app = FastAPI() + + +@app.get("/") +async def root(): + return {"message": "Hello World"} |
