mirror of
https://github.com/fly-apps/live_beats.git
synced 2025-01-24 13:48:07 +00:00
14 lines
235 B
Elixir
14 lines
235 B
Elixir
|
defmodule Phoenix.Presence.Client.Mock do
|
||
|
def init(_opts) do
|
||
|
{:ok, %{}}
|
||
|
end
|
||
|
|
||
|
def handle_join(_topic, _key, _meta, state) do
|
||
|
{:ok, state}
|
||
|
end
|
||
|
|
||
|
def handle_leave(_topic, _key, _meta, state) do
|
||
|
{:ok, state}
|
||
|
end
|
||
|
end
|