Packages
vk video plugin for Membrane Framework
Current section
Files
Jump to
Current section
Files
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