mlAPI / main.py
kandi1clickkits
import
aafbd27
raw
history blame
118 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/hello")
def hello():
return {"hello":"you success deploy"}