Current section

Files

Jump to
membrane_rtc_engine lib membrane_rtc_engine_app.ex
Raw

lib/membrane_rtc_engine_app.ex

defmodule Membrane.RTC.Engine.App do
@moduledoc false
use Application
@impl true
def start(_start_type, _start_args) do
children = [
{Registry, keys: :duplicate, name: Membrane.RTC.Engine.get_registry_name()}
]
Supervisor.start_link(children, strategy: :one_for_one)
end
end