diff options
| author | Yuval Adam <_@yuv.al> | 2020-09-21 23:29:10 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2020-09-21 23:29:10 +0300 |
| commit | d25708b978b50c905b062eb8ba3970e48ae276e8 (patch) | |
| tree | cabb9f355cf557939147c32670d42f024aa816b8 /iss/server.py | |
| parent | 3526314e0af5331ac25435d93ab225c37c6e62dc (diff) | |
Split server and prediction files
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"} |
