mirror of
https://github.com/Kludex/awesome-fastapi-projects.git
synced 2025-01-31 05:33:42 +00:00
11 lines
138 B
Python
11 lines
138 B
Python
from fastapi import APIRouter
|
|
|
|
from app.workflow import flow
|
|
|
|
router = APIRouter()
|
|
|
|
|
|
@router.get("/")
|
|
def post_pipeline():
|
|
flow.run()
|