machine-learning / main.py
abc-valera's picture
Added application file
0156fe0
raw
history blame contribute delete
110 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}