Files
agents/main.py
T

14 lines
217 B
Python
Raw Normal View History

2026-09-19 14:37:16 +03:00
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello World"}
@app.get("/hello/{name}")
async def say_hello(name: str):
return {"message": f"Hello {name}"}