3 changed files with 3 additions and 33 deletions
@ -1,29 +0,0 @@ |
|||||
from datetime import datetime, time, timedelta |
|
||||
from typing import Union |
|
||||
from uuid import UUID |
|
||||
|
|
||||
from fastapi import Body, FastAPI |
|
||||
from typing_extensions import Annotated |
|
||||
|
|
||||
app = FastAPI() |
|
||||
|
|
||||
|
|
||||
@app.put("/items/{item_id}") |
|
||||
async def read_items( |
|
||||
item_id: UUID, |
|
||||
start_datetime: Annotated[datetime, Body()], |
|
||||
end_datetime: Annotated[datetime, Body()], |
|
||||
process_after: Annotated[timedelta, Body()], |
|
||||
repeat_at: Annotated[Union[time, None], Body()] = None, |
|
||||
): |
|
||||
start_process = start_datetime + process_after |
|
||||
duration = end_datetime - start_process |
|
||||
return { |
|
||||
"item_id": item_id, |
|
||||
"start_datetime": start_datetime, |
|
||||
"end_datetime": end_datetime, |
|
||||
"process_after": process_after, |
|
||||
"repeat_at": repeat_at, |
|
||||
"start_process": start_process, |
|
||||
"duration": duration, |
|
||||
} |
|
||||
Loading…
Reference in new issue