mlAPI / app.py
deepak6593's picture
adding files
ae79c64
raw
history blame
108 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/hello")
def hello():
return {"hello":"success"}