Spaces:
Sleeping
Sleeping
| from fastapi import FastAPI | |
| app = FastAPI() | |
| def test_function(): | |
| return {"Name": "Vinh", | |
| "Age": 20} | |
| def greet_json(): | |
| return {"Hello": "World!"} |