mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-15 14:08:08 +01:00
10 lines
193 B
Python
10 lines
193 B
Python
def book_pto(args: dict) -> dict:
|
|
|
|
email = args.get("email")
|
|
start_date = args.get("start_date")
|
|
end_date = args.get("end_date")
|
|
|
|
return {
|
|
"status": "success"
|
|
}
|