ymx / app.py
xulh
δ»£η εˆε§‹εŒ–
caaf84d
raw
history blame
241 Bytes
from fastapi import FastAPI
from inference.inference import router
app = FastAPI()
app.include_router(router)
@app.get("/")
def greet_json():
return {"Hello": "World!"}
@app.get("/apiVersion")
def get_version():
return "v1.0.0"