yolov8-pose-api / test.py
unfinity
test
883b8b9
raw
history blame
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}