Current section

Files

Jump to
membrane_element_lame lib membrane_element_lame.ex
Raw

lib/membrane_element_lame.ex

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