Spaces:
Sleeping
Sleeping
| from fastapi import FastAPI | |
| app = FastAPI() | |
| def add(a: int, b: int): | |
| return {"result": a + b} | |
| from fastapi import FastAPI | |
| app = FastAPI() | |
| def add(a: int, b: int): | |
| return {"result": a + b} | |