sanbatte's picture
api with gradio
efd486d
raw
history blame contribute delete
152 Bytes
from fastapi import APIRouter
router = APIRouter()
@router.get("/")
def read_root():
return {"message": "D360 Challenge by Santiago Battezzati"}