Spaces:
Sleeping
Sleeping
File size: 136 Bytes
c71e312 |
1 2 3 4 5 6 7 8 |
from fastapi import APIRouter
router = APIRouter()
@router.get("/")
def get_plan():
return {"mensaje": "Plan actual del usuario"}
|