FlowRunner.Custom (flow_runner v6.15.1)

Copy Markdown

A base module from which one can implement one's custom flow runner.

Example

defmodule MyFlowRunner do
  use FlowRunner.Custom

  def fetch_flow_by_uuid(container, uuid) do
    load_from_custom_storage(uuid)
  end
end