Packages

A simple and opinionated pipeline builder

Current section

Files

Jump to
ex_pipeline lib pipeline application.ex
Raw

lib/pipeline/application.ex

defmodule Pipeline.Application do
use Application
def start(_type, _args) do
children = [
{Task.Supervisor, name: Pipeline.TaskSupervisor}
]
Supervisor.start_link(children, strategy: :one_for_one)
end
end