sanbatte's picture
api con gradio
781e8b6
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"}