You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
733 B

from typing import Dict, Union
from fastapi import BackgroundTasks, Depends, FastAPI
app = FastAPI()
def write_log(message: str) -> None:
with open("log.txt", mode="a") as log:
log.write(message)
def get_query(
background_tasks: BackgroundTasks, q: Union[str, None] = None
) -> Union[str, None]:
if q:
message = f"found query: {q}\n"
background_tasks.add_task(write_log, message)
return q
@app.post("/send-notification/{email}")
async def send_notification(
email: str, background_tasks: BackgroundTasks, q: str = Depends(get_query)
) -> Dict[str, str]:
message = f"message to {email}\n"
background_tasks.add_task(write_log, message)
return {"message": "Message sent"}