🔀 refactor(endpoints.py): rename process_flow function to process for better naming consistency and clarity

This commit is contained in:
Gabriel Luiz Freitas Almeida 2023-09-21 14:43:47 -03:00
commit 6ec51a0d22

View file

@ -87,7 +87,7 @@ def get_all(
"/process/{flow_id}",
response_model=ProcessResponse,
)
async def process_flow(
async def process(
session: Annotated[Session, Depends(get_session)],
flow_id: str,
inputs: Optional[dict] = None,