Current section

Files

Jump to
Raw

lib/vk_video.ex

defmodule Membrane.VKVideo do
@moduledoc false
use Application
alias Membrane.VKVideo.DeviceServer
@impl true
def start(_start_type, _start_args) do
GenServer.start_link(DeviceServer, nil, name: DeviceServer)
end
end