Files
fastapi_tutor_yb/debug/annotated_app.py
T

7 lines
157 B
Python
Raw Normal View History

2026-09-19 10:41:18 +08:00
from typing import Annotated
def say_hello(name: Annotated[str, "this is just metadata"]) -> str:
return f"Hello {name}"
print(say_hello('Annotated'))