This commit is contained in:
dosangyoon
2022-08-05 14:34:46 +09:00
parent 40534b87d5
commit fe159bac34
3 changed files with 23 additions and 2 deletions

7
StockPredictorAPI.py Normal file
View File

@@ -0,0 +1,7 @@
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}