Spaces:
Running
on
Zero
Running
on
Zero
File size: 153 Bytes
a59067e |
1 2 3 4 5 6 7 8 |
from fastapi import FastAPI, APIRouter
router = APIRouter()
@router.get("/")
def read_root():
return {"message": "Welcome to this fantastic app!"}
|