awesome-fastapi-projects/app/api/v1/pipeline.py
2020-08-13 08:36:21 +02:00

11 lines
138 B
Python

from fastapi import APIRouter
from app.workflow import flow
router = APIRouter()
@router.get("/")
def post_pipeline():
flow.run()