Current section

Files

Jump to
membrane_element_portaudio lib membrane_element_portaudio.ex
Raw

lib/membrane_element_portaudio.ex

defmodule Membrane.Element.PortAudio do
@moduledoc false
use Application
def start(_type, _args) do
children = [__MODULE__.SyncExecutor]
opts = [strategy: :one_for_one, name: Membrane.Element.PortAudio]
Supervisor.start_link(children, opts)
end
end