esrom/ui/lib/ui_web/channels/morse_progress_channel.ex

8 lines
151 B
Elixir
Raw Normal View History

defmodule UiWeb.MorseProgressChannel do
use UiWeb, :channel
2019-07-31 11:16:53 +00:00
def join(channel_name, _params, socket) do
{:ok, %{hi: :there}, socket}
end
end