Files
DeepStock/StockPredictorAPI.py
dosangyoon fe159bac34 init
2022-08-05 14:34:46 +09:00

7 lines
115 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}