Current section
Files
Jump to
Current section
Files
lib/live_capture/web.ex
defmodule LiveCapture.Web do
def live_view do
quote do
use Phoenix.LiveView
end
end
defmacro __using__(which) when is_atom(which) do
apply(__MODULE__, which, [])
end
end