Move HR-related tools to their own folder, add print statement for BookPTO functionality, and add SILLY_MODE

This commit is contained in:
Laine
2025-03-14 10:20:11 -04:00
parent ece3ac1d3c
commit 5f8f81a15d
6 changed files with 30 additions and 10 deletions

11
tools/hr/book_pto.py Normal file
View File

@@ -0,0 +1,11 @@
def book_pto(args: dict) -> dict:
email = args.get("email")
start_date = args.get("start_date")
end_date = args.get("end_date")
print(f"[BookPTO] Totally would send an email confirmation of PTO from {start_date} to {end_date} to {email} here!")
return {
"status": "success"
}