"""flow urls""" from django.urls import path from passbook.flows.views import FlowExecutorView urlpatterns = [ path("/", FlowExecutorView.as_view(), name="flow-executor"), ]